Release 1.1.1
[clawsker.git] / clawsker
index 0be22aa0703985c0f1f70d237cbf682e5438861c..15346bb8da09a1a11c16a2c4be9464a19ad83c2d 100755 (executable)
--- a/clawsker
+++ b/clawsker
@@ -686,7 +686,7 @@ sub new_subpage_frame {
         'cache_max_mem_usage',
         [ $xl::s{l_oth_max_use}, $xl::s{l_oth_max_use_units} ],
         $xl::s{h_oth_max_use},
-        'int,0,262144', # 0 Kb - 256 Mb
+        'int,0,524288', # 0 Kb - 512 Mb
         '0.7.8.36',
         '4096',
     ],
@@ -881,7 +881,7 @@ sub new_other_page() {
         $xl::s{h_gui_warn_send_multi},
         'int,0,1000',
         '3.14.1.125',
-        '0',
+        '3.15.0.28',
     ],
     next_del => [
         'next_on_delete',
@@ -1240,18 +1240,18 @@ sub new_behaviour_page() {
         '#000000',
     ],
     qs_error_bg => [
-        '',
+        'qs_error_bgcolor',
         $xl::s{l_col_qs_error_bg},
         $xl::s{h_col_qs_error_bg},
-        'qs_error_bgcolor',
+        'color',
         '3.14.1.31',
         '#ff7070',
     ],
     qs_error_text => [
-        '',
+        'qs_error_color',
         $xl::s{l_col_qs_error_text},
         $xl::s{h_col_qs_error_text},
-        'qs_error_color',
+        'color',
         '3.14.1.31',
         '#000000',
     ],
@@ -2156,7 +2156,9 @@ sub new_hotkeys_list_hotkey {
         $model->set($iter, C_HOTKEY, "\"$accel\"");
         my $gkey = $model->get_value ($iter, C_GROUP);
         my $akey = $model->get_value ($iter, C_ACCEL);
-        $HOTKEYS->{$gkey}->{$akey}->{'key'} = "\"$accel\"";
+        my $data = $HOTKEYS->{$gkey}->{$akey};
+        $data->{'key'} = "\"$accel\"";
+        $data->{'enabled'} = TRUE;
     });
     $renderer->signal_connect ('accel-cleared' => sub {
         my ($w, $path) = @_;
@@ -2164,7 +2166,9 @@ sub new_hotkeys_list_hotkey {
         $model->set($iter, C_HOTKEY, "\"\"");
         my $gkey = $model->get_value ($iter, C_GROUP);
         my $akey = $model->get_value ($iter, C_ACCEL);
-        $HOTKEYS->{$gkey}->{$akey}->{'key'} = "\"\"";
+        my $data = $HOTKEYS->{$gkey}->{$akey};
+        $data->{'key'} = "\"\"";
+        $data->{'enabled'} = FALSE;
     });
     return $renderer;
 }
@@ -2754,7 +2758,7 @@ exit unless init_hidden_preferences ();
 my $box = Gtk2::VBox->new (FALSE, 5);
 $box->set_border_width(3);
 my $about = new_about_dialog ();
-$box->pack_start (new_notebook (), FALSE, FALSE, 0);
+$box->pack_start (new_notebook (), TRUE, TRUE, 0);
 $box->pack_end (new_button_box ($main_window, $about), FALSE, FALSE, 0);
 $main_window->signal_connect (delete_event => sub { Gtk2->main_quit });
 $main_window->set_title ($xl::s{win_title});