diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2020-04-24 23:45:50 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2020-04-24 23:45:50 +0900 |
commit | 227b3565dfbf24e47a7304fcb7aeadf0352318ec (patch) | |
tree | f93364d4d9180cccfc51d82dc91d70ea3a1fafb4 /src | |
parent | 840801cbceb246f27a273b7eccc798fbdf97764a (diff) | |
download | tdedocker-227b3565dfbf24e47a7304fcb7aeadf0352318ec.tar.gz tdedocker-227b3565dfbf24e47a7304fcb7aeadf0352318ec.zip |
Allow arguments for the application to be docked to be passed seemlessly after the application name.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src')
-rw-r--r-- | src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index 437bc42..69b0692 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -62,7 +62,7 @@ static const TDECmdLineOptions options[] = { "q", I18N_NOOP("Disable ballooning title changes (quiet)"), 0L }, { "t", I18N_NOOP("Remove this application from the task bar"), 0L }, { "w wid", I18N_NOOP("Window id of the application to dock"), 0L }, - { "+[command <args>]", I18N_NOOP("Application to dock"), 0 }, + { "!+[command <args>]", I18N_NOOP("Application to dock"), 0 }, TDECmdLineLastOption }; |