diff options
author | Berke Viktor <bviktor@hexchat.org> | 2012-11-04 00:31:09 +0100 |
---|---|---|
committer | Berke Viktor <bviktor@hexchat.org> | 2012-11-04 00:31:09 +0100 |
commit | a0e14dfc5f7590245d9d9cb488dcbbddbb803a4e (patch) | |
tree | bf7ccdd985fd4782d66cf4f3acdcdfb485e9b500 /src/fe-gtk/setup.c | |
parent | c0e65ff0fe118ba477983d5c7494d4f35921cf68 (diff) |
Workaround for marker line option being untickable
Diffstat (limited to 'src/fe-gtk/setup.c')
-rw-r--r-- | src/fe-gtk/setup.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/fe-gtk/setup.c b/src/fe-gtk/setup.c index 27049dd9..2e5281f7 100644 --- a/src/fe-gtk/setup.c +++ b/src/fe-gtk/setup.c @@ -169,20 +169,20 @@ static const setting appearance_settings[] = #endif {ST_HEADER, N_("Text Box"),0,0,0}, - {ST_EFILE, N_("Background image:"), P_OFFSETNL(hex_text_background), 0, 0, sizeof prefs.hex_text_background}, - {ST_TOGGLE, N_("Colored nick names"), P_OFFINTNL(hex_text_color_nicks), - N_("Give each person on IRC a different color"),0,0}, - {ST_TOGGLR, N_("Indent nick names"), P_OFFINTNL(hex_text_indent), - N_("Make nick names right-justified"),0,0}, + {ST_TOGGLE, N_("Colored nick names"), P_OFFINTNL(hex_text_color_nicks), N_("Give each person on IRC a different color"),0,0}, + {ST_TOGGLR, N_("Indent nick names"), P_OFFINTNL(hex_text_indent), N_("Make nick names right-justified"),0,0}, #if defined(USE_XLIB) || defined(WIN32) {ST_TOGGLE, N_("Transparent background"), P_OFFINTNL(hex_text_transparent),0,0,0}, {ST_TOGGLR, N_("Show marker line"), P_OFFINTNL(hex_text_show_marker), N_("Insert a red line after the last read text."),0,0}, + {ST_EFILE, N_("Background image:"), P_OFFSETNL(hex_text_background), 0, 0, sizeof prefs.hex_text_background}, + {ST_HEADER, N_("Transparency Settings"), 0,0,0}, {ST_HSCALE, N_("Red:"), P_OFFINTNL(hex_text_tint_red),0,0,0}, {ST_HSCALE, N_("Green:"), P_OFFINTNL(hex_text_tint_green),0,0,0}, {ST_HSCALE, N_("Blue:"), P_OFFINTNL(hex_text_tint_blue),0,0,0}, #else {ST_TOGGLE, N_("Show marker line"), P_OFFINTNL(hex_text_show_marker), N_("Insert a red line after the last read text."),0,0}, + {ST_EFILE, N_("Background image:"), P_OFFSETNL(hex_text_background), 0, 0, sizeof prefs.hex_text_background}, #endif {ST_HEADER, N_("Time Stamps"),0,0,0}, |