From 0fae0aec01df79eb01e8966699e88917f1e90b68 Mon Sep 17 00:00:00 2001 From: Ricardo Mones Date: Thu, 24 Apr 2008 08:09:03 +0000 Subject: [PATCH] support for new hidden pref: two_line_vertical --- ChangeLog | 6 ++++++ VERSION | 2 +- clawsker | 13 +++++++++++++ 3 files changed, 20 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 4b41b45..085174e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2008-04-24 10:06 mones 0.4.0svn89 + + * clawsker + Add support for new hidden preference in version + 3.4.0cvs7: 'two_line_vertical' + 2008-02-26 11:58 mones 0.4.0 * README diff --git a/VERSION b/VERSION index 1d0ba9e..f7cadf1 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.4.0 +0.4.0svn89 diff --git a/clawsker b/clawsker index 829c37a..a5a24d8 100755 --- a/clawsker +++ b/clawsker @@ -167,6 +167,8 @@ sub _ { h_gui_strip_all => _('Enable alternately coloured lines in all tree view components.'), l_gui_strip_sum => _('Use stripes in Folder List and Message List'), h_gui_strip_sum => _('Enable alternately coloured lines in message list and folder list'), + l_gui_two_line_v => _('2 lines per Message List item in 3-column layout'), + h_gui_two_line_v => _('Spread Message List information over two lines when using the three column mode'), l_beh_hover_t => _('Drag \'n\' drop hover timeout (ms)'), h_beh_hover_t => _('Time in milliseconds that will cause a folder tree to expand when the mouse cursor is held over it during drag and drop.'), @@ -624,6 +626,15 @@ sub new_other_page() { '1', undef, ], + two_linev => [ + 'two_line_vertical', + $xl::s{l_gui_two_line_v}, + $xl::s{h_gui_two_line_v}, + 'bool', + '3.4.0.7', + '0', + undef, + ], ); sub new_gui_page() { @@ -663,6 +674,7 @@ sub new_gui_page() { my $cb_dot_lines = &new_check_button_for (\%pr::gui, 'dot_lines'); my $cb_cursor_v = &new_check_button_for (\%pr::gui, 'cursor_v'); my $cb_toolbar_d = &new_check_button_for (\%pr::gui, 'toolbar_d'); + my $cb_two_linev = &new_check_button_for (\%pr::gui, 'two_linev'); $gf->pack_start ($stripes_frame, FALSE, FALSE, FRAME_SPC); $gf->pack_start ($mlist_frame, FALSE, FALSE, FRAME_SPC); @@ -670,6 +682,7 @@ sub new_gui_page() { $gf->pack_start ($cb_dot_lines, FALSE, FALSE, 0); $gf->pack_start ($cb_cursor_v, FALSE, FALSE, 0); $gf->pack_start ($cb_toolbar_d, FALSE, FALSE, 0); + $gf->pack_start ($cb_two_linev, FALSE, FALSE, 0); $gf->pack_start ($sbar_frame, FALSE, FALSE, FRAME_SPC); return $gf; -- 2.25.1