diff options
author | Matthias Clasen <mclasen@redhat.com> | 2005-11-07 16:31:48 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2005-11-07 16:31:48 +0000 |
commit | ee26e0f17d3955bc3db813c4f369a688dd393d43 (patch) | |
tree | fdc73f1fb93f7fe9618df10cea0ac6d0ddea9c4a /gtk/gtktoolitem.c | |
parent | 0ce29ee61416314bf3773ec0b3f07f050b6245a5 (diff) | |
download | gtk+-ee26e0f17d3955bc3db813c4f369a688dd393d43.tar.gz |
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)
Diffstat (limited to 'gtk/gtktoolitem.c')
-rw-r--r-- | gtk/gtktoolitem.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gtk/gtktoolitem.c b/gtk/gtktoolitem.c index 35407444a2..b5708221fd 100644 --- a/gtk/gtktoolitem.c +++ b/gtk/gtktoolitem.c @@ -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__ |