Change queue_resize() to queue_draw(), and add a check for child2 != NULL
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) svn path=/trunk/; revision=19449
This commit is contained in:
		
				
					committed by
					
						
						Cody Russell
					
				
			
			
				
	
			
			
			
						parent
						
							53fa8e3174
						
					
				
				
					commit
					9e1fbc93a2
				
			@ -1,3 +1,10 @@
 | 
				
			|||||||
 | 
					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)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
2008-01-31  Sven Neumann  <sven@gimp.org>
 | 
					2008-01-31  Sven Neumann  <sven@gimp.org>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	* gdk/directfb/gdkimage-directfb.c (_gdk_directfb_copy_to_image):
 | 
						* gdk/directfb/gdkimage-directfb.c (_gdk_directfb_copy_to_image):
 | 
				
			||||||
 | 
				
			|||||||
@ -1235,7 +1235,10 @@ gtk_paned_set_position (GtkPaned *paned,
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
#ifdef G_OS_WIN32
 | 
					#ifdef G_OS_WIN32
 | 
				
			||||||
  /* Hacky work-around for bug #144269 */
 | 
					  /* Hacky work-around for bug #144269 */
 | 
				
			||||||
  gtk_widget_queue_resize (paned->child2);
 | 
					  if (paned->child2 != NULL)
 | 
				
			||||||
 | 
					    {
 | 
				
			||||||
 | 
					      gtk_widget_queue_draw (paned->child2);
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user