From abb010cae5c6c0093aec21b81585fbebfc46faa3 Mon Sep 17 00:00:00 2001 From: Kai Uwe Broulik 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