aboutsummaryrefslogtreecommitdiffstats
path: root/src/ephy-window.c
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2006-01-04 20:25:42 +0800
committerChristian Persch <chpe@src.gnome.org>2006-01-04 20:25:42 +0800
commitce41d0f2c6becdb0032813f8917ff82e984b860f (patch)
treebc6f51198b6a6ddfa0f615870fa7ac52dde46293 /src/ephy-window.c
parent9c35bf08fb67fc9b74da029f00c699dbd1fd200a (diff)
downloadgsoc2013-epiphany-ce41d0f2c6becdb0032813f8917ff82e984b860f.tar
gsoc2013-epiphany-ce41d0f2c6becdb0032813f8917ff82e984b860f.tar.gz
gsoc2013-epiphany-ce41d0f2c6becdb0032813f8917ff82e984b860f.tar.bz2
gsoc2013-epiphany-ce41d0f2c6becdb0032813f8917ff82e984b860f.tar.lz
gsoc2013-epiphany-ce41d0f2c6becdb0032813f8917ff82e984b860f.tar.xz
gsoc2013-epiphany-ce41d0f2c6becdb0032813f8917ff82e984b860f.tar.zst
gsoc2013-epiphany-ce41d0f2c6becdb0032813f8917ff82e984b860f.zip
Fix warning when Ctrl-F while the find toolbar is already shown. Fix
2006-01-04 Christian Persch <chpe@cvs.gnome.org> * src/ephy-find-toolbar.c: (entry_changed_cb), (set_focus_cb), (ephy_find_toolbar_grab_focus), (ephy_find_toolbar_find_next), (ephy_find_toolbar_find_previous), (ephy_find_toolbar_open), (ephy_find_toolbar_close): Fix warning when Ctrl-F while the find toolbar is already shown. Fix next/prev button sensitivity when find wrapped around. * src/ephy-window.c: Add more XF86XK key codes.
Diffstat (limited to 'src/ephy-window.c')
-rw-r--r--src/ephy-window.c16
1 files changed, 9 insertions, 7 deletions
diff --git a/src/ephy-window.c b/src/ephy-window.c
index bf8f98f0b..7f49315c8 100644
--- a/src/ephy-window.c
+++ b/src/ephy-window.c
@@ -365,20 +365,22 @@ static const struct
{ GDK_KP_Subtract, GDK_CONTROL_MASK, "ViewZoomOut", FALSE },
{ GDK_equal, GDK_CONTROL_MASK, "ViewZoomIn", FALSE },
#ifdef HAVE_X11_XF86KEYSYM_H
- { XF86XK_HomePage, 0, "GoHome", TRUE },
{ XF86XK_Back, 0, "NavigationBack", TRUE },
- { XF86XK_Forward, 0, "NavigationForward", TRUE },
- { XF86XK_Stop, 0, "ViewStop", FALSE },
- { XF86XK_Refresh, 0, "ViewReload", FALSE },
- { XF86XK_Reload, 0, "ViewReload", FALSE },
{ XF86XK_Favorites, 0, "GoBookmarks", FALSE },
+ { XF86XK_Forward, 0, "NavigationForward", TRUE },
+ { XF86XK_Go, 0, "GoLocation", FALSE },
{ XF86XK_History, 0, "GoHistory", FALSE },
+ { XF86XK_HomePage, 0, "GoHome", TRUE },
{ XF86XK_OpenURL, 0, "GoLocation", FALSE },
- { XF86XK_Go, 0, "GoLocation", FALSE },
{ XF86XK_AddFavorite, 0, "FileBookmarkPage", FALSE },
+ { XF86XK_Refresh, 0, "ViewReload", FALSE },
+ { XF86XK_Reload, 0, "ViewReload", FALSE },
+ { XF86XK_Search, 0, "EditFind", FALSE },
{ XF86XK_Send, 0, "FileSendTo", FALSE },
+ { XF86XK_Start, 0, "GoHome", TRUE },
+ { XF86XK_Stop, 0, "ViewStop", FALSE },
{ XF86XK_ZoomIn, 0, "ViewZoomIn", FALSE },
- { XF86XK_ZoomOut, 0, "ViewZoomOut", FALSE },
+ { XF86XK_ZoomOut, 0, "ViewZoomOut", FALSE }
/* FIXME: what about ScrollUp, ScrollDown, Menu*, Option, LogOff, Save,.. any others? */
#endif /* HAVE_X11_XF86KEYSYM_H */
};