summaryrefslogtreecommitdiffstats
path: root/tdeioslave
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-11-27 02:17:02 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-11-27 02:17:02 -0600
commit5ab19b14bd37985f904c0a1b42f5a6e36d6a3df0 (patch)
tree30eb2b61dfdcdfdbdc4be4382a116289db73580d /tdeioslave
parent70a56d09e0a50feabd1f0ac53c7d51e1b5d8b828 (diff)
downloadtdebase-5ab19b14bd37985f904c0a1b42f5a6e36d6a3df0.tar.gz
tdebase-5ab19b14bd37985f904c0a1b42f5a6e36d6a3df0.zip
Honor disk hidden flag when handling device insertion notifiers
This relates to Bug 2211
Diffstat (limited to 'tdeioslave')
-rw-r--r--tdeioslave/media/mediamanager/tdehardwarebackend.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/tdeioslave/media/mediamanager/tdehardwarebackend.cpp b/tdeioslave/media/mediamanager/tdehardwarebackend.cpp
index ce9d8fb9e..56eab25b2 100644
--- a/tdeioslave/media/mediamanager/tdehardwarebackend.cpp
+++ b/tdeioslave/media/mediamanager/tdehardwarebackend.cpp
@@ -140,6 +140,12 @@ void TDEBackend::AddDevice(TDEStorageDevice * sdevice, bool allowNotification)
return;
}
+ // Respect the device's hidden flag--we will still make the device available via the tdeioslave
+ // but we will not generate popups or other notifications on device insertion
+ if (sdevice->checkDiskStatus(TDEDiskDeviceStatus::Hidden)) {
+ allowNotification = false;
+ }
+
// Add volume block devices
if (sdevice->isDiskOfType(TDEDiskDeviceType::HDD)) {
/* We only list volumes that...