diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2015-09-21 16:05:28 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2015-09-21 16:05:28 -0500 |
commit | 7e9c0a99b6287c940f846b0bcbd8974be0b7ef99 (patch) | |
tree | 1391df34db8daeedef7746d68b2aeaa133207181 /tdeioslave/media/mediamanager/tdehardwarebackend.cpp | |
parent | f8035fe97c9edb5a1103344d2ef09cce126371cb (diff) | |
download | tdebase-7e9c0a99b6287c940f846b0bcbd8974be0b7ef99.tar.gz tdebase-7e9c0a99b6287c940f846b0bcbd8974be0b7ef99.zip |
Disable autoplay popups by default as the new tdehwdevicetray application will handle notification and autoplay popup initiation
Diffstat (limited to 'tdeioslave/media/mediamanager/tdehardwarebackend.cpp')
-rw-r--r-- | tdeioslave/media/mediamanager/tdehardwarebackend.cpp | 2 |
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; } |