diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ManaTools/Shared/GUI/CommandLine.pm | 12 |
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', |