summaryrefslogtreecommitdiff
path: root/gtk
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2010-04-08 17:37:08 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2010-04-08 17:37:08 +0000
commitc1d0f3287561b0ce83de73112f09b22f40ddd2cd (patch)
treef2f697aecbee68829378f5354e574071f4f2bb64 /gtk
parent9d38a662990c74e13a29547afaf8d040c58436cf (diff)
downloadnetsurf-c1d0f3287561b0ce83de73112f09b22f40ddd2cd.tar.gz
netsurf-c1d0f3287561b0ce83de73112f09b22f40ddd2cd.tar.bz2
Turn on smooth scaling by default, since it doesn't make much difference to preformance and looks better. Align columns in options table.
svn path=/trunk/netsurf/; revision=10321
Diffstat (limited to 'gtk')
-rw-r--r--gtk/options.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/gtk/options.h b/gtk/options.h
index c2f5e48e8..cb6f0bde2 100644
--- a/gtk/options.h
+++ b/gtk/options.h
@@ -38,7 +38,7 @@ extern bool option_source_tab;
extern int option_current_theme;
#define EXTRA_OPTION_DEFINE \
-bool option_render_resample = false; \
+bool option_render_resample = true; \
bool option_downloads_clear = false; \
bool option_request_overwrite = true; \
char *option_downloads_directory = 0; \
@@ -61,14 +61,14 @@ int option_current_theme = 0;
{ "downloads_directory",OPTION_STRING, &option_downloads_directory }, \
{ "url_file", OPTION_STRING, &option_url_file }, \
{ "show_single_tab", OPTION_BOOL, &option_show_single_tab }, \
-{ "button_type", OPTION_INTEGER, &option_button_type}, \
-{ "disable_popups", OPTION_BOOL, &option_disable_popups}, \
+{ "button_type", OPTION_INTEGER, &option_button_type}, \
+{ "disable_popups", OPTION_BOOL, &option_disable_popups}, \
{ "disable_plugins", OPTION_BOOL, &option_disable_plugins}, \
-{ "history_age", OPTION_INTEGER, &option_history_age}, \
-{ "hover_urls", OPTION_BOOL, &option_hover_urls}, \
-{ "focus_new", OPTION_BOOL, &option_focus_new}, \
-{ "new_blank", OPTION_BOOL, &option_new_blank}, \
-{ "source_tab", OPTION_BOOL, &option_source_tab},\
-{ "current_theme", OPTION_INTEGER, &option_current_theme}
+{ "history_age", OPTION_INTEGER, &option_history_age}, \
+{ "hover_urls", OPTION_BOOL, &option_hover_urls}, \
+{ "focus_new", OPTION_BOOL, &option_focus_new}, \
+{ "new_blank", OPTION_BOOL, &option_new_blank}, \
+{ "source_tab", OPTION_BOOL, &option_source_tab},\
+{ "current_theme", OPTION_INTEGER, &option_current_theme}
#endif