|
From: <sa...@us...> - 2007-04-01 08:06:31
|
Revision: 18224
http://svn.sourceforge.net/gaim/?rev=18224&view=rev
Author: sadrul
Date: 2007-04-01 01:06:29 -0700 (Sun, 01 Apr 2007)
Log Message:
-----------
More fixes for resizing when shadow is turned on.
Modified Paths:
--------------
trunk/console/libgnt/gntwm.c
Modified: trunk/console/libgnt/gntwm.c
===================================================================
--- trunk/console/libgnt/gntwm.c 2007-04-01 03:53:01 UTC (rev 18223)
+++ trunk/console/libgnt/gntwm.c 2007-04-01 08:06:29 UTC (rev 18224)
@@ -1359,7 +1359,7 @@
maxy = getmaxy(stdscr) - 1 - shadow;
height = MIN(height, maxy);
width = MIN(width, maxx);
- wresize(node->window, height + shadow, width + shadow);
+ wresize(node->window, height, width);
replace_panel(node->panel, node->window);
g_signal_emit(wm, signals[SIG_RESIZED], 0, node);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|