# HG changeset patch # User Eric Warmenhoven # Date 1001036859 0 # Node ID e3939d21c2f05b528c36da1afae6a871859e6567 # Parent c6c5eaf69188b87b6d0b6694b809431101ecb022 [gaim-migrate @ 2350] fix the selection thing where if you drag it past where the text is it keeps going and it causes weird things to happen. this feels much more solid. committer: Tailor Script diff -r c6c5eaf69188 -r e3939d21c2f0 src/gtkimhtml.c --- a/src/gtkimhtml.c Fri Sep 21 00:57:13 2001 +0000 +++ b/src/gtkimhtml.c Fri Sep 21 01:47:39 2001 +0000 @@ -1209,7 +1209,7 @@ imhtml); diff = (yy < 0) ? (yy / 2) : ((yy - height) / 2); gtk_adjustment_set_value (vadj, - MIN (vadj->value + diff, vadj->upper - height + 20)); + MIN (vadj->value + diff, vadj->upper - height)); } if (imhtml->selection) {