gtk+ r19449 - in trunk: . gtk



Author: bratsche
Date: Thu Jan 31 17:53:06 2008
New Revision: 19449
URL: http://svn.gnome.org/viewvc/gtk+?rev=19449&view=rev

Log:
2008-01-31  Cody Russell  <bratsche gnome org>

        * gtk/gtkpaned.c (gtk_paned_set_position):
        Change queue_resize() to queue_draw(), and add a check for
        child2 != NULL in case someone calls this before there is
        a child packed in there.  (#144269 again)



Modified:
   trunk/ChangeLog
   trunk/gtk/gtkpaned.c

Modified: trunk/gtk/gtkpaned.c
==============================================================================
--- trunk/gtk/gtkpaned.c	(original)
+++ trunk/gtk/gtkpaned.c	Thu Jan 31 17:53:06 2008
@@ -1235,7 +1235,10 @@
 
 #ifdef G_OS_WIN32
   /* Hacky work-around for bug #144269 */
-  gtk_widget_queue_resize (paned->child2);
+  if (paned->child2 != NULL)
+    {
+      gtk_widget_queue_draw (paned->child2);
+    }
 #endif
 }
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]