diff options
author | Marco Pesenti Gritti <marco@it.gnome.org> | 2003-05-04 00:51:29 +0800 |
---|---|---|
committer | Marco Pesenti Gritti <mpeseng@src.gnome.org> | 2003-05-04 00:51:29 +0800 |
commit | 3f4726c21f495297332c5cedae66e636ba88a1a0 (patch) | |
tree | 8a640bf6d7bf43d70b76566f913026c14742ec2e /src/toolbar.c | |
parent | 14e235f2eb930212dcdf8eca1dccfdcf56cd933e (diff) | |
download | gsoc2013-epiphany-3f4726c21f495297332c5cedae66e636ba88a1a0.tar gsoc2013-epiphany-3f4726c21f495297332c5cedae66e636ba88a1a0.tar.gz gsoc2013-epiphany-3f4726c21f495297332c5cedae66e636ba88a1a0.tar.bz2 gsoc2013-epiphany-3f4726c21f495297332c5cedae66e636ba88a1a0.tar.lz gsoc2013-epiphany-3f4726c21f495297332c5cedae66e636ba88a1a0.tar.xz gsoc2013-epiphany-3f4726c21f495297332c5cedae66e636ba88a1a0.tar.zst gsoc2013-epiphany-3f4726c21f495297332c5cedae66e636ba88a1a0.zip |
Search for ui files in the share dir
2003-05-03 Marco Pesenti Gritti <marco@it.gnome.org>
* src/ephy-nautilus-view.c: (ephy_nautilus_view_instance_init),
(gnv_bonobo_control_activate_cb):
Search for ui files in the share dir
* src/statusbar.c: (statusbar_set_message):
Strip \n \r from messages
* src/toolbar.c:
Allow reorder of bookmarks
Diffstat (limited to 'src/toolbar.c')
-rwxr-xr-x | src/toolbar.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/toolbar.c b/src/toolbar.c index abf2477ef..6cebc97e5 100755 --- a/src/toolbar.c +++ b/src/toolbar.c @@ -55,8 +55,9 @@ toolbar_get_property (GObject *object, GParamSpec *pspec); static GtkTargetEntry drag_targets[] = { - { EPHY_DND_TOPIC_TYPE, 0, 0 }, - { EPHY_DND_BOOKMARK_TYPE, 0, 1 }, + { EGG_TOOLBAR_ITEM_TYPE, 0, 0 }, + { EPHY_DND_TOPIC_TYPE, 0, 1 }, + { EPHY_DND_BOOKMARK_TYPE, 0, 2 }, }; static int n_drag_targets = G_N_ELEMENTS (drag_targets); |