diff options
-rwxr-xr-x | control-center | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/control-center b/control-center index 0c573d5a..2322f9aa 100755 --- a/control-center +++ b/control-center @@ -625,7 +625,6 @@ my $ui = gtknew('UIManager', actions => [ #-PO: you just have to select the proper letter for your language (eg: english: "Quit" => "Q") N("<control>Q"), undef, \&quit_global ], [ 'OptionsMenu', undef, N("_Options") ], - [ 'show_log', undef, N("Display _Logs") ], [ 'HelpMenu', undef, N("_Help") ], [ 'Help', undef, N("_Help"), N("<control>H"), undef, \&run_help ], [ 'Release_notes', undef, N("_Release notes"), undef, undef, sub { run_browser('Release_Notes') } ], @@ -637,7 +636,7 @@ my $ui = gtknew('UIManager', actions => [ [ 'About', undef, N("_About..."), '', undef, \&about_mga_cc ], ], toggle_actions => [ - [ 'Show_Logs', undef, N("Display _Logs"), undef, undef, sub { + [ 'show_log', undef, N("Display _Logs"), undef, undef, sub { $option_values{show_log} = $check_boxes{show_log}->get_active; if ($option_values{show_log}) { start_logdrake(); |