From: Eric W. <war...@us...> - 2001-09-21 01:47:42
|
Update of /cvsroot/gaim/gaim/src In directory usw-pr-cvs1:/tmp/cvs-serv16775 Modified Files: gtkimhtml.c Log Message: 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. Index: gtkimhtml.c =================================================================== RCS file: /cvsroot/gaim/gaim/src/gtkimhtml.c,v retrieving revision 1.48 retrieving revision 1.49 diff -u -d -r1.48 -r1.49 --- gtkimhtml.c 2001/08/29 00:04:59 1.48 +++ gtkimhtml.c 2001/09/21 01:47:39 1.49 @@ -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) { |