diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-08-18 20:07:41 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-08-18 23:22:12 +0900 |
commit | f5c38bbee365595635da3b6138821841863e8551 (patch) | |
tree | 420515b70da9662797a8705ab2df449c7f164b10 | |
parent | 7740e825a683a9cc84f8422c94109c5fcc4beb8e (diff) | |
download | tdelibs-f5c38bbee365595635da3b6138821841863e8551.tar.gz tdelibs-f5c38bbee365595635da3b6138821841863e8551.zip |
Check KDE start condition if TDE start condition was not found. This refers to issue #283
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r-- | tdeinit/autostart.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tdeinit/autostart.cpp b/tdeinit/autostart.cpp index 79e71c7f6..abc3c2ef3 100644 --- a/tdeinit/autostart.cpp +++ b/tdeinit/autostart.cpp @@ -130,8 +130,8 @@ AutoStart::loadAutoStartList() if (!startCondition(config.readEntry("X-TDE-autostart-condition"))) continue; } - else { - if (!startCondition(config.readEntry("X-TDE-autostart-condition"))) + else if (config.hasKey("X-KDE-autostart-condition")) { + if (!startCondition(config.readEntry("X-KDE-autostart-condition"))) continue; } if (!config.tryExec()) |