Raise the drag_window after reconfiguring the toolbar. (#320803, Christian

2005-11-07  Matthias Clasen  <mclasen@redhat.com>

	* gtk/gtktoolitem.c (_gtk_tool_item_toolbar_reconfigured):
	Raise the drag_window after reconfiguring the
	toolbar.  (#320803, Christian Persch)
This commit is contained in:
Matthias Clasen
2005-11-07 16:39:29 +00:00
committed by Matthias Clasen
parent ef3d6268cb
commit 9a48d49800
3 changed files with 21 additions and 0 deletions

View File

@@ -1,3 +1,12 @@
2005-11-07 Matthias Clasen <mclasen@redhat.com>
* gtk/gtktoolitem.c (_gtk_tool_item_toolbar_reconfigured):
Raise the drag_window after reconfiguring the
toolbar. (#320803, Christian Persch)
* gtk/gtkrbtree.c: Plug a small memory leak. (#320777,
Antonio Sacchi)
2005-11-07 Tor Lillqvist <tml@novell.com>
* gdk/win32/gdkcursor-win32.c (pixbuf_to_hbitmaps_normal):

View File

@@ -1,3 +1,12 @@
2005-11-07 Matthias Clasen <mclasen@redhat.com>
* gtk/gtktoolitem.c (_gtk_tool_item_toolbar_reconfigured):
Raise the drag_window after reconfiguring the
toolbar. (#320803, Christian Persch)
* gtk/gtkrbtree.c: Plug a small memory leak. (#320777,
Antonio Sacchi)
2005-11-07 Tor Lillqvist <tml@novell.com>
* gdk/win32/gdkcursor-win32.c (pixbuf_to_hbitmaps_normal):

View File

@@ -1137,6 +1137,9 @@ _gtk_tool_item_toolbar_reconfigured (GtkToolItem *tool_item)
g_signal_emit (tool_item, toolitem_signals[TOOLBAR_RECONFIGURED], 0);
if (tool_item->priv->drag_window)
gdk_window_raise (tool_item->priv->drag_window);
gtk_widget_queue_resize (GTK_WIDGET (tool_item));
}