aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAngelo Naselli <anaselli@linux.it>2015-02-17 16:05:05 +0100
committerAngelo Naselli <anaselli@linux.it>2015-02-17 16:05:05 +0100
commit852f8bca495702fe99e80acacf02e4fc4548cd11 (patch)
tree351129b588b7ba1057e8e2c11e3d8a115edb7684
parentdffd6f978852434d495de70d37b6f7b9168408b8 (diff)
downloadcolin-keep-852f8bca495702fe99e80acacf02e4fc4548cd11.tar
colin-keep-852f8bca495702fe99e80acacf02e4fc4548cd11.tar.gz
colin-keep-852f8bca495702fe99e80acacf02e4fc4548cd11.tar.bz2
colin-keep-852f8bca495702fe99e80acacf02e4fc4548cd11.tar.xz
colin-keep-852f8bca495702fe99e80acacf02e4fc4548cd11.zip
Added common shortcut to dialog push button (About, Cancel, Ok)
-rw-r--r--lib/AdminPanel/Module/DisplayManager.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/AdminPanel/Module/DisplayManager.pm b/lib/AdminPanel/Module/DisplayManager.pm
index 5fbeeb3..1f6c054 100644
--- a/lib/AdminPanel/Module/DisplayManager.pm
+++ b/lib/AdminPanel/Module/DisplayManager.pm
@@ -251,9 +251,9 @@ sub _manageProxyDialog {
my $hbox_foot = $factory->createHBox($layout);
my $vbox_foot_left = $factory->createVBox($factory->createLeft($hbox_foot));
my $vbox_foot_right = $factory->createVBox($factory->createRight($hbox_foot));
- my $aboutButton = $factory->createPushButton($vbox_foot_left,$self->loc->N("About"));
- my $cancelButton = $factory->createPushButton($vbox_foot_right,$self->loc->N("Cancel"));
- my $okButton = $factory->createPushButton($vbox_foot_right,$self->loc->N("OK"));
+ my $aboutButton = $factory->createPushButton($vbox_foot_left,$self->loc->N("&About"));
+ my $cancelButton = $factory->createPushButton($vbox_foot_right,$self->loc->N("&Cancel"));
+ my $okButton = $factory->createPushButton($vbox_foot_right,$self->loc->N("&OK"));
# main loop
while(1) {