aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAngelo Naselli <anaselli@linux.it>2016-01-04 00:10:27 +0100
committerAngelo Naselli <anaselli@linux.it>2016-01-04 00:10:27 +0100
commitedd211c4827a0ce8b19d7baf5ce6c1c8163192da (patch)
tree767361712f7e5de6e95bf57f6ef7195c276d8834
parent181c296dfa21281dc4e08300edbf30995eb5f2a6 (diff)
downloadmanatools-edd211c4827a0ce8b19d7baf5ce6c1c8163192da.tar
manatools-edd211c4827a0ce8b19d7baf5ce6c1c8163192da.tar.gz
manatools-edd211c4827a0ce8b19d7baf5ce6c1c8163192da.tar.bz2
manatools-edd211c4827a0ce8b19d7baf5ce6c1c8163192da.tar.xz
manatools-edd211c4827a0ce8b19d7baf5ce6c1c8163192da.zip
added cl help for yui options for fullscreen and noborder
-rw-r--r--lib/ManaTools/Shared/GUI/CommandLine.pm12
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/ManaTools/Shared/GUI/CommandLine.pm b/lib/ManaTools/Shared/GUI/CommandLine.pm
index 67adeb33..772a101f 100644
--- a/lib/ManaTools/Shared/GUI/CommandLine.pm
+++ b/lib/ManaTools/Shared/GUI/CommandLine.pm
@@ -99,6 +99,18 @@ has 'qt' => (
documentation => $loc->N('start using yui qt plugin implementation')
);
+has 'fullscreen' => (
+ traits => [ 'Getopt' ],
+ is => 'ro',
+ documentation => $loc->N('use full screen for dialogs')
+);
+
+has 'noborder' => (
+ traits => [ 'Getopt' ],
+ is => 'ro',
+ documentation => $loc->N('no window manager border for dialogs')
+);
+
has 'conf_dir' => (
traits => [ 'Getopt' ],
isa => 'Str',