diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-10-13 21:41:23 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-10-13 21:41:23 -0500 |
commit | 6fb5669626c58d79beb6e9db048d2783cc2198c5 (patch) | |
tree | b7a93ff27771e812961941576f768e4476babca3 /kcontrol | |
parent | 1f79e5310340b895b15ad7594fc5d7afb5a69418 (diff) | |
download | tdebase-6fb5669626c58d79beb6e9db048d2783cc2198c5.tar.gz tdebase-6fb5669626c58d79beb6e9db048d2783cc2198c5.zip |
Fix blank optical media labeling
Diffstat (limited to 'kcontrol')
-rw-r--r-- | kcontrol/hwmanager/devicepropsdlg.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/kcontrol/hwmanager/devicepropsdlg.cpp b/kcontrol/hwmanager/devicepropsdlg.cpp index b41833210..64e2bcde2 100644 --- a/kcontrol/hwmanager/devicepropsdlg.cpp +++ b/kcontrol/hwmanager/devicepropsdlg.cpp @@ -400,6 +400,9 @@ void DevicePropertiesDialog::populateDeviceInformation() { if (sdevice->checkDiskStatus(TDEDiskDeviceStatus::Inserted)) { status_text += "Inserted<br>"; } + if (sdevice->checkDiskStatus(TDEDiskDeviceStatus::Blank)) { + status_text += "Blank<br>"; + } if (sdevice->checkDiskStatus(TDEDiskDeviceStatus::UsedByDevice)) { status_text += "In use<br>"; } |