From: <sa...@us...> - 2006-08-23 05:10:27
|
Revision: 16995 Author: sadrul Date: 2006-08-22 22:10:08 -0700 (Tue, 22 Aug 2006) ViewCVS: http://svn.sourceforge.net/gaim/?rev=16995&view=rev Log Message: ----------- Do it right Modified Paths: -------------- trunk/console/plugins/gntgf.c Modified: trunk/console/plugins/gntgf.c =================================================================== --- trunk/console/plugins/gntgf.c 2006-08-23 04:29:16 UTC (rev 16994) +++ trunk/console/plugins/gntgf.c 2006-08-23 05:10:08 UTC (rev 16995) @@ -129,7 +129,7 @@ g_free(str); gnt_widget_size_request(window); gnt_widget_get_size(window, &w, &h); - for (i = 0; i < MAX_COLS && gpsy[i] + h > getmaxy(stdscr) ; ++i) + for (i = 0; i < MAX_COLS && gpsy[i] + h >= getmaxy(stdscr) ; ++i) ; if (i >= MAX_COLS) { gaim_debug_warning("GntGf", "Dude, that's way too many popups\n"); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |