diff options
author | Berke Viktor <bviktor@hexchat.org> | 2012-10-19 19:37:10 +0200 |
---|---|---|
committer | Berke Viktor <bviktor@hexchat.org> | 2012-10-19 19:37:10 +0200 |
commit | d5477a81d68ac910c7b061830c196a693fc58f8d (patch) | |
tree | 37cff0a87d4ca0ef5233c95b59483c0001e70d67 /src | |
parent | 31242c94dea88e4e467a5c3fa3dd11c0db65f8e1 (diff) |
Reorganize the Appearance tab
Diffstat (limited to 'src')
-rw-r--r-- | src/fe-gtk/setup.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/fe-gtk/setup.c b/src/fe-gtk/setup.c index 07acafc5..ed002a28 100644 --- a/src/fe-gtk/setup.c +++ b/src/fe-gtk/setup.c @@ -153,16 +153,14 @@ static const char *const langsmenu[] = static const setting appearance_settings[] = { + {ST_HEADER, N_("General"),0,0,0}, #ifdef WIN32 - {ST_HEADER, N_("Localization"),0,0,0}, - {ST_MENU, N_("Interface language:"), P_OFFINTNL(gui_lang), 0, langsmenu, 0}, -#endif - {ST_HEADER, N_("Text Box"),0,0,0}, -#ifdef WIN32 + {ST_MENU, N_("Language:"), P_OFFINTNL(gui_lang), 0, langsmenu, 0}, {ST_EFONT, N_("Main font:"), P_OFFSETNL(font_main), 0, 0, sizeof prefs.font_main}, #else {ST_EFONT, N_("Font:"), P_OFFSETNL(font_normal), 0, 0, sizeof prefs.font_normal}, #endif + {ST_HEADER, N_("Text Box"),0,0,0}, {ST_EFILE, N_("Background image:"), P_OFFSETNL(background), 0, 0, sizeof prefs.background}, {ST_NUMBER, N_("Scrollback lines:"), P_OFFINTNL(max_lines),0,0,100000}, {ST_TOGGLE, N_("Colored nick names"), P_OFFINTNL(colorednicks), |