mirror of
https://github.com/duncs/clusterssh.git
synced 2025-07-03 01:43:25 +00:00
Fix 'File->Show History'
Missed an object reference in the original call for showing the window
This commit is contained in:
parent
b8ee135487
commit
56faa0ac30
2 changed files with 5 additions and 2 deletions
|
@ -3,7 +3,7 @@ package App::ClusterSSH;
|
|||
use 5.008.004;
|
||||
use warnings;
|
||||
use strict;
|
||||
use version; our $VERSION = version->new('4.02_02');
|
||||
use version; our $VERSION = version->new('4.02_03');
|
||||
|
||||
use Carp;
|
||||
|
||||
|
@ -1692,7 +1692,7 @@ sub create_menubar() {
|
|||
-menuitems => [
|
||||
[ "command",
|
||||
"Show History",
|
||||
-command => \&show_history,
|
||||
-command => sub{ $self->show_history; },
|
||||
-accelerator => $self->config->{key_history},
|
||||
],
|
||||
[ "command",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue