Remove gui_colour_* options.
svn path=/trunk/netsurf/; revision=13740
This commit is contained in:
parent
ce20021df7
commit
57793aae89
|
@ -201,11 +201,6 @@ max_fetchers:3
|
||||||
max_fetchers_per_host:2
|
max_fetchers_per_host:2
|
||||||
max_cached_fetch_handles:5
|
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):
|
# allow target=_blank (link opens in new window):
|
||||||
target_blank:1
|
target_blank:1
|
||||||
|
|
||||||
|
|
|
@ -168,11 +168,6 @@
|
||||||
/** Whether second mouse button opens in new tab */ \
|
/** Whether second mouse button opens in new tab */ \
|
||||||
bool button_2_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 */ \
|
/* system colours */ \
|
||||||
colour sys_colour_ActiveBorder; \
|
colour sys_colour_ActiveBorder; \
|
||||||
colour sys_colour_ActiveCaption; \
|
colour sys_colour_ActiveCaption; \
|
||||||
|
@ -263,10 +258,7 @@
|
||||||
.max_cached_fetch_handles = 6, \
|
.max_cached_fetch_handles = 6, \
|
||||||
.suppress_curl_debug = true, \
|
.suppress_curl_debug = true, \
|
||||||
.target_blank = true, \
|
.target_blank = true, \
|
||||||
.button_2_tab = true, \
|
.button_2_tab = true
|
||||||
.gui_colour_bg_1 = 0xFFCCBB, \
|
|
||||||
.gui_colour_fg_1 = 0x000000, \
|
|
||||||
.gui_colour_fg_2 = 0xFFFBF8
|
|
||||||
|
|
||||||
#define NSOPTION_MAIN_SYS_COLOUR_DEFAULTS \
|
#define NSOPTION_MAIN_SYS_COLOUR_DEFAULTS \
|
||||||
.sys_colour_ActiveBorder = 0x00000000, \
|
.sys_colour_ActiveBorder = 0x00000000, \
|
||||||
|
@ -362,10 +354,6 @@
|
||||||
{ "enable_loosening", OPTION_BOOL, &nsoptions.enable_loosening}, \
|
{ "enable_loosening", OPTION_BOOL, &nsoptions.enable_loosening}, \
|
||||||
{ "enable_PDF_compression", OPTION_BOOL, &nsoptions.enable_PDF_compression}, \
|
{ "enable_PDF_compression", OPTION_BOOL, &nsoptions.enable_PDF_compression}, \
|
||||||
{ "enable_PDF_password", OPTION_BOOL, &nsoptions.enable_PDF_password}, \
|
{ "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 */ \
|
/* System colours */ \
|
||||||
{ "sys_colour_ActiveBorder",OPTION_COLOUR,&nsoptions.sys_colour_ActiveBorder }, \
|
{ "sys_colour_ActiveBorder",OPTION_COLOUR,&nsoptions.sys_colour_ActiveBorder }, \
|
||||||
|
|
Loading…
Reference in New Issue