summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2015-09-21 16:05:28 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2015-09-21 16:05:28 -0500
commit7e9c0a99b6287c940f846b0bcbd8974be0b7ef99 (patch)
tree1391df34db8daeedef7746d68b2aeaa133207181
parentf8035fe97c9edb5a1103344d2ef09cce126371cb (diff)
downloadtdebase-7e9c0a99.tar.gz
tdebase-7e9c0a99.zip
Disable autoplay popups by default as the new tdehwdevicetray application will handle notification and autoplay popup initiation
-rw-r--r--tdeioslave/media/mediamanager/tdehardwarebackend.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tdeioslave/media/mediamanager/tdehardwarebackend.cpp b/tdeioslave/media/mediamanager/tdehardwarebackend.cpp
index 5846e00af..edfa9fec3 100644
--- a/tdeioslave/media/mediamanager/tdehardwarebackend.cpp
+++ b/tdeioslave/media/mediamanager/tdehardwarebackend.cpp
@@ -150,7 +150,7 @@ void TDEBackend::AddDevice(TDEStorageDevice * sdevice, bool allowNotification)
bool allowDialogNotification = allowNotification;
TDEConfig config("mediamanagerrc");
config.setGroup("Global");
- if (!config.readBoolEntry("NotificationPopupsEnabled", true)) {
+ if (!config.readBoolEntry("NotificationPopupsEnabled", false)) {
allowDialogNotification = false;
}