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:31:48 +00:00 committed by Matthias Clasen
parent 0ce29ee614
commit ee26e0f17d
3 changed files with 11 additions and 0 deletions

View File

@ -1,5 +1,9 @@
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/gtk.symbols:
* gtk/gtkfilechooserbutton.h:
* gtk/gtkfilechooserbutton.c: Add a focus-on-click property

View File

@ -1,5 +1,9 @@
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/gtk.symbols:
* gtk/gtkfilechooserbutton.h:
* gtk/gtkfilechooserbutton.c: Add a focus-on-click property

View File

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