diff options
author | Marco Pesenti Gritti <marco@gnome.org> | 2003-10-31 18:56:24 +0800 |
---|---|---|
committer | Marco Pesenti Gritti <marco@src.gnome.org> | 2003-10-31 18:56:24 +0800 |
commit | fc8ce911b63ee1197effa81591c73fe8cab353d2 (patch) | |
tree | 4dbba16967f4cd0721f085c5777a73e7f9c6f872 /lib/egg/egg-editable-toolbar.c | |
parent | 0bf20d0ea2f023c7c805ee5034f525699e068d3f (diff) | |
download | gsoc2013-epiphany-fc8ce911b63ee1197effa81591c73fe8cab353d2.tar gsoc2013-epiphany-fc8ce911b63ee1197effa81591c73fe8cab353d2.tar.gz gsoc2013-epiphany-fc8ce911b63ee1197effa81591c73fe8cab353d2.tar.bz2 gsoc2013-epiphany-fc8ce911b63ee1197effa81591c73fe8cab353d2.tar.lz gsoc2013-epiphany-fc8ce911b63ee1197effa81591c73fe8cab353d2.tar.xz gsoc2013-epiphany-fc8ce911b63ee1197effa81591c73fe8cab353d2.tar.zst gsoc2013-epiphany-fc8ce911b63ee1197effa81591c73fe8cab353d2.zip |
When changing toolbar unhighlight the old one, not the new
2003-10-31 Marco Pesenti Gritti <marco@gnome.org>
* lib/egg/egg-editable-toolbar.c: (toolbar_drag_motion_cb):
When changing toolbar unhighlight the old one, not the new
Diffstat (limited to 'lib/egg/egg-editable-toolbar.c')
-rwxr-xr-x | lib/egg/egg-editable-toolbar.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/egg/egg-editable-toolbar.c b/lib/egg/egg-editable-toolbar.c index f9f139422..d01b0b3d8 100755 --- a/lib/egg/egg-editable-toolbar.c +++ b/lib/egg/egg-editable-toolbar.c @@ -559,7 +559,8 @@ toolbar_drag_motion_cb (GtkWidget *widget, if (etoolbar->priv->target_toolbar != toolbar) { if (etoolbar->priv->target_toolbar) - gtk_toolbar_set_drop_highlight_item (toolbar, NULL, 0); + gtk_toolbar_set_drop_highlight_item + (etoolbar->priv->target_toolbar, NULL, 0); free_dragged_item (etoolbar); etoolbar->priv->pending = TRUE; |