Tue, 14 Feb 2006 05:43:43 +0000
[gaim-migrate @ 15646]
Always show a vertical scrollbar on conversations imhtmls. This will solve the shrinking conversation window bug. I chose this approach instead of saving the size of the window (as I had previous talked about), as this prevents the contents of the scrollback from rewrapping when the scrollbars appear or disappear. It also just seems to feel like the right thing to do, but maybe that's me being lazy.
| 11660 | 1 | plugindir = $(libdir)/gaim |
| 2 | ||
| 3 | plugin_LTLIBRARIES = mono.la | |
| 4 | ||
| 5 | mono_la_SOURCES = \ | |
| 6 | mono.c \ | |
|
11882
36fd5edba10c
[gaim-migrate @ 14173]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
11660
diff
changeset
|
7 | mono-glue.h \ |
| 11660 | 8 | mono-helper.c \ |
|
11882
36fd5edba10c
[gaim-migrate @ 14173]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
11660
diff
changeset
|
9 | mono-helper.h \ |
| 11660 | 10 | debug-glue.c \ |
| 11 | signal-glue.c \ | |
|
11980
fe5c2c58508c
[gaim-migrate @ 14273]
Eoin Coffey <ecoffey@soc.pidgin.im>
parents:
11882
diff
changeset
|
12 | blist-glue.c \ |
|
fe5c2c58508c
[gaim-migrate @ 14273]
Eoin Coffey <ecoffey@soc.pidgin.im>
parents:
11882
diff
changeset
|
13 | status-glue.c |
| 11660 | 14 | |
| 15 | mono_la_LDFLAGS = -module -avoid-version | |
| 16 | ||
| 17 | mono_la_LIBADD = $(MONO_LIBS) | |
| 18 | ||
| 19 | AM_CPPFLAGS = \ | |
| 20 | -DVERSION=\"$(VERSION)\" \ | |
| 21 | -I$(top_srcdir) \ | |
| 22 | -I$(top_srcdir)/src \ | |
| 23 | $(DEBUG_CFLAGS) \ | |
| 24 | $(PLUGIN_CFLAGS) \ | |
| 25 | $(MONO_CFLAGS) |