Remove gui_colour_* options.

svn path=/trunk/netsurf/; revision=13740
This commit is contained in:
Michael Drake 2012-03-27 11:51:18 +00:00
parent ce20021df7
commit 57793aae89
2 changed files with 1 additions and 18 deletions

View File

@ -201,11 +201,6 @@ max_fetchers:3
max_fetchers_per_host:2
max_cached_fetch_handles:5
# uncomment to configure GUI colors
#gui_colour_bg_1
#gui_colour_fg_1
#gui_colour_fg_2
# allow target=_blank (link opens in new window):
target_blank:1

View File

@ -168,11 +168,6 @@
/** Whether second mouse button opens in new tab */ \
bool button_2_tab; \
\
/* Interface colours */ \
colour gui_colour_bg_1; /** Background (bbggrr) */ \
colour gui_colour_fg_1; /** Foreground (bbggrr) */ \
colour gui_colour_fg_2; /** Foreground selected (bbggrr) */ \
\
/* system colours */ \
colour sys_colour_ActiveBorder; \
colour sys_colour_ActiveCaption; \
@ -263,10 +258,7 @@
.max_cached_fetch_handles = 6, \
.suppress_curl_debug = true, \
.target_blank = true, \
.button_2_tab = true, \
.gui_colour_bg_1 = 0xFFCCBB, \
.gui_colour_fg_1 = 0x000000, \
.gui_colour_fg_2 = 0xFFFBF8
.button_2_tab = true
#define NSOPTION_MAIN_SYS_COLOUR_DEFAULTS \
.sys_colour_ActiveBorder = 0x00000000, \
@ -362,10 +354,6 @@
{ "enable_loosening", OPTION_BOOL, &nsoptions.enable_loosening}, \
{ "enable_PDF_compression", OPTION_BOOL, &nsoptions.enable_PDF_compression}, \
{ "enable_PDF_password", OPTION_BOOL, &nsoptions.enable_PDF_password}, \
/* Interface colours */ \
{ "gui_colour_bg_1", OPTION_COLOUR, &nsoptions.gui_colour_bg_1}, \
{ "gui_colour_fg_1", OPTION_COLOUR, &nsoptions.gui_colour_fg_1}, \
{ "gui_colour_fg_2", OPTION_COLOUR, &nsoptions.gui_colour_fg_2}, \
\
/* System colours */ \
{ "sys_colour_ActiveBorder",OPTION_COLOUR,&nsoptions.sys_colour_ActiveBorder }, \