diff options
author | Marco Pesenti Gritti <marco@it.gnome.org> | 2003-04-05 23:13:03 +0800 |
---|---|---|
committer | Marco Pesenti Gritti <mpeseng@src.gnome.org> | 2003-04-05 23:13:03 +0800 |
commit | bb9135424aa48a88b35446521810dd8590b03419 (patch) | |
tree | 6fb5e0f5f8b2f359ef47663039b3c25078f11a9e /src/bookmarks | |
parent | 86fe205bedd65bbc15d6f2bcbbabeb8cf7e9582d (diff) | |
download | gsoc2013-epiphany-bb9135424aa48a88b35446521810dd8590b03419.tar gsoc2013-epiphany-bb9135424aa48a88b35446521810dd8590b03419.tar.gz gsoc2013-epiphany-bb9135424aa48a88b35446521810dd8590b03419.tar.bz2 gsoc2013-epiphany-bb9135424aa48a88b35446521810dd8590b03419.tar.lz gsoc2013-epiphany-bb9135424aa48a88b35446521810dd8590b03419.tar.xz gsoc2013-epiphany-bb9135424aa48a88b35446521810dd8590b03419.tar.zst gsoc2013-epiphany-bb9135424aa48a88b35446521810dd8590b03419.zip |
The callback return a boolean !
2003-04-05 Marco Pesenti Gritti <marco@it.gnome.org>
* src/bookmarks/ephy-bookmarks-editor.c: (view_focus_cb):
The callback return a boolean !
Diffstat (limited to 'src/bookmarks')
-rw-r--r-- | src/bookmarks/ephy-bookmarks-editor.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/bookmarks/ephy-bookmarks-editor.c b/src/bookmarks/ephy-bookmarks-editor.c index 1bdb82399..40027ed1c 100644 --- a/src/bookmarks/ephy-bookmarks-editor.c +++ b/src/bookmarks/ephy-bookmarks-editor.c @@ -559,12 +559,14 @@ ephy_bookmarks_editor_node_selected_cb (EphyNodeView *view, ephy_bookmarks_editor_update_menu (editor, view); } -static void +static gboolean view_focus_cb (EphyNodeView *view, GdkEventFocus *event, EphyBookmarksEditor *editor) { ephy_bookmarks_editor_update_menu (editor, view); + + return FALSE; } static void |