You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
plasma-workspace/0004-Device-Notifier-Improv...

27 lines
1.3 KiB

From abb010cae5c6c0093aec21b81585fbebfc46faa3 Mon Sep 17 00:00:00 2001
From: Kai Uwe Broulik <kde@privat.broulik.de>
Date: Thu, 7 Jan 2016 23:08:51 +0100
Subject: [PATCH 4/6] [Device Notifier] Improve legibility of device status
label
---
applets/devicenotifier/package/contents/ui/DeviceItem.qml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/applets/devicenotifier/package/contents/ui/DeviceItem.qml b/applets/devicenotifier/package/contents/ui/DeviceItem.qml
index 3078cef..1a07c3f 100644
--- a/applets/devicenotifier/package/contents/ui/DeviceItem.qml
+++ b/applets/devicenotifier/package/contents/ui/DeviceItem.qml
@@ -161,7 +161,7 @@ Item {
// initialized
text: deviceItem.state == 0 ? container.idleStatus() : (deviceItem.state == 1 ? i18nc("Accessing is a less technical word for Mounting; translation should be short and mean \'Currently mounting this device\'", "Accessing...") : i18nc("Removing is a less technical word for Unmounting; translation shoud be short and mean \'Currently unmounting this device\'", "Removing..."))
font.pointSize: theme.smallestFont.pointSize
- color: "#99"+(theme.textColor.toString().substr(1))
+ opacity: 0.6
Behavior on opacity { NumberAnimation { duration: units.shortDuration * 3 } }
}
--
2.5.0