diff options
author | Christian Persch <chpe@stud.uni-saarland.de> | 2003-04-05 06:32:04 +0800 |
---|---|---|
committer | Marco Pesenti Gritti <mpeseng@src.gnome.org> | 2003-04-05 06:32:04 +0800 |
commit | 1a09e5e82379afe72911f7f1cdf407bed57813e9 (patch) | |
tree | 01a4ff0d4498b72e88942db0f717eb368e25e4c5 /src/toolbar.c | |
parent | d95d1dfa398383b0b6446d63b96dc4e2e3a972ff (diff) | |
download | gsoc2013-epiphany-1a09e5e82379afe72911f7f1cdf407bed57813e9.tar gsoc2013-epiphany-1a09e5e82379afe72911f7f1cdf407bed57813e9.tar.gz gsoc2013-epiphany-1a09e5e82379afe72911f7f1cdf407bed57813e9.tar.bz2 gsoc2013-epiphany-1a09e5e82379afe72911f7f1cdf407bed57813e9.tar.lz gsoc2013-epiphany-1a09e5e82379afe72911f7f1cdf407bed57813e9.tar.xz gsoc2013-epiphany-1a09e5e82379afe72911f7f1cdf407bed57813e9.tar.zst gsoc2013-epiphany-1a09e5e82379afe72911f7f1cdf407bed57813e9.zip |
Set drag source on the event box, to avoid conflicts with toolbars drag
2003-04-05 Christian Persch <chpe@stud.uni-saarland.de>
* src/ephy-favicon-action.c: (create_tool_item), (connect_proxy):
Set drag source on the event box, to avoid conflicts with toolbars
drag and drop.
Diffstat (limited to 'src/toolbar.c')
-rwxr-xr-x | src/toolbar.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/toolbar.c b/src/toolbar.c index 146282058..ff28353a0 100755 --- a/src/toolbar.c +++ b/src/toolbar.c @@ -405,6 +405,11 @@ toolbar_init (Toolbar *t) t->priv->ui_merge = NULL; t->priv->visibility = TRUE; + egg_editable_toolbar_add_drag_type (EGG_EDITABLE_TOOLBAR (t), + EPHY_DND_TOPIC_TYPE); + egg_editable_toolbar_add_drag_type (EGG_EDITABLE_TOOLBAR (t), + EPHY_DND_URL_TYPE); + if (group == NULL) { char *user; |