summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--!NetSurf/Resources/fr/Templates,fecbin6206 -> 5906 bytes
-rw-r--r--riscos/constdata.c1
-rw-r--r--riscos/dialog.c15
-rw-r--r--riscos/gui.h2
4 files changed, 1 insertions, 17 deletions
diff --git a/!NetSurf/Resources/fr/Templates,fec b/!NetSurf/Resources/fr/Templates,fec
index 36e21be84..8b2424749 100644
--- a/!NetSurf/Resources/fr/Templates,fec
+++ b/!NetSurf/Resources/fr/Templates,fec
Binary files differ
diff --git a/riscos/constdata.c b/riscos/constdata.c
index f720ddec6..25a1e482b 100644
--- a/riscos/constdata.c
+++ b/riscos/constdata.c
@@ -17,5 +17,4 @@ const char * const COOKIE_URL = "file:///%3CWimp$ScrapDir%3E/WWW/NetSurf/Cookies
#endif
#endif
-const char * const GESTURES_URL = "file:///%3CNetSurf$Dir%3E/Resources/gestures";
const char * const THEMES_URL = "http://netsurf.sourceforge.net/themes/";
diff --git a/riscos/dialog.c b/riscos/dialog.c
index ced6def7f..fe63c90eb 100644
--- a/riscos/dialog.c
+++ b/riscos/dialog.c
@@ -246,9 +246,6 @@ void ro_gui_dialog_click_config_br(wimp_pointer *pointer)
ro_gui_dialog_close(dialog_config_br);
set_browser_choices();
break;
- case ICON_CONFIG_BR_EXPLAIN:
- browser_window_create(GESTURES_URL);
- break;
case ICON_CONFIG_BR_FONTSIZE_DEC:
if (font_size == 50)
break;
@@ -400,12 +397,6 @@ void ro_gui_dialog_close(wimp_w close)
void set_browser_choices(void)
{
- set_icon_state(dialog_config_br, ICON_CONFIG_BR_GESTURES,
- option_use_mouse_gestures);
- set_icon_state(dialog_config_br, ICON_CONFIG_BR_TEXT,
- option_allow_text_selection);
- set_icon_state(dialog_config_br, ICON_CONFIG_BR_TOOLBAR,
- option_show_toolbar);
font_size = option_font_size;
font_min_size = option_font_min_size;
ro_gui_dialog_update_config_br();
@@ -424,12 +415,6 @@ void set_browser_choices(void)
void get_browser_choices(void)
{
- option_use_mouse_gestures = get_icon_state(dialog_config_br,
- ICON_CONFIG_BR_GESTURES);
- option_allow_text_selection = get_icon_state(dialog_config_br,
- ICON_CONFIG_BR_TEXT);
- option_show_toolbar = get_icon_state(dialog_config_br,
- ICON_CONFIG_BR_TOOLBAR);
option_font_size = font_size;
option_font_min_size = font_min_size;
}
diff --git a/riscos/gui.h b/riscos/gui.h
index 7cded2a19..c11233551 100644
--- a/riscos/gui.h
+++ b/riscos/gui.h
@@ -195,7 +195,7 @@ void schedule_run(void);
#define ICON_CONFIG_BR_OK 0
#define ICON_CONFIG_BR_CANCEL 1
-#define ICON_CONFIG_BR_FONTSIZE 2
+#define ICON_CONFIG_BR_FONTSIZE 3
#define ICON_CONFIG_BR_FONTSIZE_DEC 4
#define ICON_CONFIG_BR_FONTSIZE_INC 5
#define ICON_CONFIG_BR_MINSIZE 7