diff options
author | Berke Viktor <bviktor@hexchat.org> | 2012-10-24 19:19:06 +0200 |
---|---|---|
committer | Berke Viktor <bviktor@hexchat.org> | 2012-10-24 19:19:06 +0200 |
commit | d26aa1bf82792434056c88cf58771e6f4f764589 (patch) | |
tree | 8f705fc266ca4d3565766284ed4a780ce5c0f731 /src/fe-gtk/setup.c | |
parent | d9b5900525e469e40ab57e948713af1e81a07789 (diff) |
Move scrollback lines to Logging
Diffstat (limited to 'src/fe-gtk/setup.c')
-rw-r--r-- | src/fe-gtk/setup.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fe-gtk/setup.c b/src/fe-gtk/setup.c index 4fdf44d1..1f940d9f 100644 --- a/src/fe-gtk/setup.c +++ b/src/fe-gtk/setup.c @@ -174,7 +174,6 @@ static const setting appearance_settings[] = {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_NUMBER, N_("Scrollback lines:"), P_OFFINTNL(hex_text_max_lines),0,0,100000}, {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), @@ -546,7 +545,8 @@ static const setting advanced_settings_oneinstance[] = static const setting logging_settings[] = { {ST_HEADER, N_("Logging"),0,0,0}, - {ST_TOGGLE, N_("Display scrollback from previous session"), P_OFFINTNL(hex_text_replay), 0, 0, 0}, + {ST_TOGGLE, N_("Display scrollback from previous session"), P_OFFINTNL(hex_text_replay), 0, 0, 2}, + {ST_NUMBER, N_("Scrollback lines:"), P_OFFINTNL(hex_text_max_lines),0,0,100000}, {ST_TOGGLE, N_("Enable logging of conversations to disk"), P_OFFINTNL(hex_irc_logging), 0, 0, 2}, {ST_ENTRY, N_("Log filename:"), P_OFFSETNL(hex_irc_logmask), 0, 0, sizeof prefs.hex_irc_logmask}, {ST_LABEL, N_("%s=Server %c=Channel %n=Network.")}, |