diff --git a/applets/quicklaunch/package/contents/ui/main.qml b/applets/quicklaunch/package/contents/ui/main.qml --- a/applets/quicklaunch/package/contents/ui/main.qml +++ b/applets/quicklaunch/package/contents/ui/main.qml @@ -142,7 +142,6 @@ PlasmaCore.ToolTipArea { anchors.fill: parent - icon: "fork" mainText: i18n("Quicklaunch") subText: i18nc("@info", "Add launchers by Drag and Drop or by using the context menu.") } diff --git a/applets/quickshare/plasmoid/contents/ui/main.qml b/applets/quickshare/plasmoid/contents/ui/main.qml --- a/applets/quickshare/plasmoid/contents/ui/main.qml +++ b/applets/quickshare/plasmoid/contents/ui/main.qml @@ -289,41 +289,36 @@ State { name: "idle" PropertyChanges { target: icon; source: "emblem-shared-symbolic" } - PropertyChanges { target: tooltipArea; icon: "emblem-shared-symbolic" } PropertyChanges { target: tooltipArea; mainText: i18n("Share") } PropertyChanges { target: tooltipArea; subText: contentTracker.uri ? i18n("Upload %1 to an online service", contentTracker.title ? contentTracker.title : filenameFromUrl(contentTracker.uri)) : i18n("Drop text or an image onto me to upload it to an online service.") } }, State { name: "configuration" PropertyChanges { target: icon; source: "configure" } - PropertyChanges { target: tooltipArea; icon: "edit-paste" } PropertyChanges { target: shareDialog; visible: true } }, State { name: "sending" PropertyChanges { target: icon; visible: false } PropertyChanges { target: busy; visible: true } PropertyChanges { target: busy; running: true } - PropertyChanges { target: tooltipArea; icon: "view-history" } PropertyChanges { target: tooltipArea; mainText: i18n("Sending...") } PropertyChanges { target: tooltipArea; subText: i18n("Please wait") } }, State { name: "success" PropertyChanges { target: icon; source: "dialog-ok" } PropertyChanges { target: idleTimer; running: true } - PropertyChanges { target: tooltipArea; icon: "dialog-ok" } PropertyChanges { target: tooltipArea; mainText: i18n("Successfully uploaded") } PropertyChanges { target: tooltipArea; subText: root.url ? i18n("%1", root.url) : "" } }, State { name: "failure" PropertyChanges { target: icon; source: "dialog-cancel" } PropertyChanges { target: idleTimer; running: true } - PropertyChanges { target: tooltipArea; icon: icon.source } PropertyChanges { target: tooltipArea; mainText: i18n("Error during upload.") } PropertyChanges { target: tooltipArea; subText: (root.errorMessage=="" ? i18n("Please, try again.") : root.errorMessage) } }