summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--kcontrol/launch/kcmlaunch.h3
-rw-r--r--kicker/taskmanager/taskmanager.cpp2
2 files changed, 3 insertions, 2 deletions
diff --git a/kcontrol/launch/kcmlaunch.h b/kcontrol/launch/kcmlaunch.h
index f7c16bcef..057a3f3d1 100644
--- a/kcontrol/launch/kcmlaunch.h
+++ b/kcontrol/launch/kcmlaunch.h
@@ -54,7 +54,8 @@ class LaunchConfig : public KCModule
BusyCursor = 1 << 0,
TaskbarButton = 1 << 1,
- Default = BusyCursor | TaskbarButton
+// Default = BusyCursor | TaskbarButton
+ Default = 0;
};
diff --git a/kicker/taskmanager/taskmanager.cpp b/kicker/taskmanager/taskmanager.cpp
index 9a912e6fd..739c626b5 100644
--- a/kicker/taskmanager/taskmanager.cpp
+++ b/kicker/taskmanager/taskmanager.cpp
@@ -95,7 +95,7 @@ void TaskManager::configure_startup()
{
KConfig c("klaunchrc", true);
c.setGroup("FeedbackStyle");
- if (!c.readBoolEntry("TaskbarButton", true))
+ if (!c.readBoolEntry("TaskbarButton", false))
return;
_startup_info = new KStartupInfo( KStartupInfo::CleanOnCantDetect, this );
connect( _startup_info,