diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2020-03-31 22:41:41 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2020-03-31 22:41:41 +0900 |
commit | 6fcc661ff72af5a957a1a8d2737d2327dba8841e (patch) | |
tree | 284b56632512e37875a8a19a5792551e147402d1 /src/main.cpp | |
parent | 05add324c22f8fb2d1824a8a6145b2b8821e95bb (diff) | |
download | tdedocker-6fcc661ff72af5a957a1a8d2737d2327dba8841e.tar.gz tdedocker-6fcc661ff72af5a957a1a8d2737d2327dba8841e.zip |
1) fixed bug when invoking tdedocker with options, which were not passed
to an existing instance
2) code restructure for tray label object
3) dockWhenLostFocus option is now saved/restored correctly
4) fixed issues with popup menu actions status
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.cpp b/src/main.cpp index d10215d..437bc42 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -54,9 +54,9 @@ static const TDECmdLineOptions options[] = { "b", I18N_NOOP("Dont warn about non-normal windows (blind mode)"), 0L }, { "d", I18N_NOOP("Disable session management"), 0L }, { "e", I18N_NOOP("Enable session management"), 0L }, - { "f", I18N_NOOP("Dock window that has the focus(active window)"), 0L }, + { "f", I18N_NOOP("Dock window that has the focus (active window)"), 0L }, { "i icon", I18N_NOOP("Custom dock Icon"), 0L }, - { "m", I18N_NOOP("Keep application window mapped (dont hide on dock)"), 0L }, + { "m", I18N_NOOP("Keep application window mapped (don't hide on dock)"), 0L }, { "o", I18N_NOOP("Dock when obscured"), 0L }, { "p secs", I18N_NOOP("Set ballooning timeout (popup time)"), 0L }, { "q", I18N_NOOP("Disable ballooning title changes (quiet)"), 0L }, |