aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rwxr-xr-xlib/egg/egg-editable-toolbar.c3
2 files changed, 8 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index f821c03e8..94da5ecc7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+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
+
2003-10-30 Christian Persch <chpe@cvs.gnome.org>
* embed/mozilla/mozilla-embed-single.cpp: (getUILang):
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;