summaryrefslogtreecommitdiff
path: root/riscos/options.h
diff options
context:
space:
mode:
authorRichard Wilson <rjw@netsurf-browser.org>2006-07-03 01:03:07 +0000
committerRichard Wilson <rjw@netsurf-browser.org>2006-07-03 01:03:07 +0000
commit5eb703af733f49f743eabbea6783bc74de95ebc5 (patch)
treea69fbea5d9b2fb49c620ce9f082e785d3032579b /riscos/options.h
parent148399a7b98facbc6ad4f73a75e0b8cfc84f511a (diff)
downloadnetsurf-5eb703af733f49f743eabbea6783bc74de95ebc5.tar.gz
netsurf-5eb703af733f49f743eabbea6783bc74de95ebc5.tar.bz2
Allow thumbnail icons to be turned off.
svn path=/trunk/netsurf/; revision=2699
Diffstat (limited to 'riscos/options.h')
-rw-r--r--riscos/options.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/riscos/options.h b/riscos/options.h
index a968fcd89..176924b8f 100644
--- a/riscos/options.h
+++ b/riscos/options.h
@@ -59,6 +59,7 @@ extern char *option_recent_path;
extern char *option_recent_save;
extern char *option_theme_path;
extern char *option_theme_save;
+extern bool option_thumbnail_iconise;
#define EXTRA_OPTION_DEFINE \
bool option_use_mouse_gestures = false;\
@@ -103,7 +104,8 @@ char *option_hotlist_save = 0; \
char *option_recent_path = 0; \
char *option_recent_save = 0; \
char *option_theme_path = 0; \
-char *option_theme_save = 0;
+char *option_theme_save = 0; \
+bool option_thumbnail_iconise = true;
#define EXTRA_OPTION_TABLE \
{ "use_mouse_gestures", OPTION_BOOL, &option_use_mouse_gestures },\
@@ -148,6 +150,7 @@ char *option_theme_save = 0;
{ "recent_path", OPTION_STRING, &option_recent_path }, \
{ "recent_save", OPTION_STRING, &option_recent_save }, \
{ "theme_path", OPTION_STRING, &option_theme_path }, \
-{ "theme_save", OPTION_STRING, &option_theme_save }
+{ "theme_save", OPTION_STRING, &option_theme_save }, \
+{ "thumbnail_iconise", OPTION_BOOL, &option_thumbnail_iconise }
#endif