diff options
author | Xan Lopez <xan@src.gnome.org> | 2009-01-01 03:12:30 +0800 |
---|---|---|
committer | Xan Lopez <xan@src.gnome.org> | 2009-01-01 03:12:30 +0800 |
commit | e1c0aaa12f1d1e0f584a549f820d21de34e7b432 (patch) | |
tree | 2a07a4ac2aefe02c6d28585004658d1d1ae2ffbd /lib/widgets/ephy-location-entry.c | |
parent | 34250839acccb7e92829eb2d67b96cb1cff5cd0e (diff) | |
download | gsoc2013-epiphany-e1c0aaa12f1d1e0f584a549f820d21de34e7b432.tar.gz gsoc2013-epiphany-e1c0aaa12f1d1e0f584a549f820d21de34e7b432.tar.zst gsoc2013-epiphany-e1c0aaa12f1d1e0f584a549f820d21de34e7b432.zip |
Use connect_after when connecting to drag-begin so we can override the
pixmap that GtkEntry sets in DnD.
svn path=/trunk/; revision=8658
Diffstat (limited to 'lib/widgets/ephy-location-entry.c')
-rw-r--r-- | lib/widgets/ephy-location-entry.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/widgets/ephy-location-entry.c b/lib/widgets/ephy-location-entry.c index 36172df01..b89a92442 100644 --- a/lib/widgets/ephy-location-entry.c +++ b/lib/widgets/ephy-location-entry.c @@ -834,8 +834,8 @@ ephy_location_entry_construct_contents (EphyLocationEntry *lentry) g_signal_connect (priv->entry, "drag-data-get", G_CALLBACK (favicon_drag_data_get_cb), lentry); - g_signal_connect (priv->entry, "drag-begin", - G_CALLBACK (favicon_drag_begin_cb), lentry); + g_signal_connect_after (priv->entry, "drag-begin", + G_CALLBACK (favicon_drag_begin_cb), lentry); gtk_entry_set_icon_tooltip_text (GTK_ENTRY (priv->entry), GTK_ENTRY_ICON_PRIMARY, |