From a1292c7935dcf0e78e92a37fe3dc6b39a1782c8e Mon Sep 17 00:00:00 2001 From: Adrian Lees Date: Fri, 18 Aug 2006 05:39:53 +0000 Subject: Map Ctrl-S/F to Save/Search for Windows compatibility since they were unused svn path=/trunk/netsurf/; revision=2866 --- riscos/window.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'riscos') diff --git a/riscos/window.c b/riscos/window.c index 5c4ddb2ee..8386df8ee 100644 --- a/riscos/window.c +++ b/riscos/window.c @@ -1924,6 +1924,7 @@ bool ro_gui_window_keypress(wimp_key *key) browser_window_destroy(g->bw); return true; + case 19: /* Ctrl + S */ case IS_WIMP_KEY + wimp_KEY_F3: return ro_gui_menu_handle_action(g->window, BROWSER_SAVE, false); @@ -1941,6 +1942,7 @@ bool ro_gui_window_keypress(wimp_key *key) BROWSER_EXPORT_DRAW, false); #ifdef WITH_SEARCH + case 6: /* Ctrl + F */ case IS_WIMP_KEY + wimp_KEY_F4: /* Search */ return ro_gui_menu_handle_action(g->window, BROWSER_FIND_TEXT, false); -- cgit v1.2.3