mirror of
https://github.com/duncs/clusterssh.git
synced 2025-04-22 09:22:24 +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
Changes
3
Changes
|
@ -1,3 +1,6 @@
|
|||
????-??-?? Duncan Ferguson <duncan_ferguson@user.sf.net> - v4.02_03
|
||||
- Fix 'File->Show History' (Sf support request 41)
|
||||
|
||||
2014-01-13 Duncan Ferguson <duncan_ferguson@user.sf.net> - v4.02_02
|
||||
- Fixed macros (%u, %s, %h, %n) not doing multiple replacements
|
||||
- Add in key shortcut for username macro (ALT-u)
|
||||
|
|
|
@ -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
Reference in a new issue