From d066eb8cbd85f2618cd3400c3e1c9f899c8b8605 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kre=C5=A1imir=20=C4=8Cohar?= Date: Thu, 3 Jan 2019 19:23:33 +0100 Subject: [PATCH] [Clipboard] Use ellipsis in the search field label ('Search...' instead of 'Search') Summary: This patch adds the ellipsis (...) to the search field label in Clipboard so as to make it consistent with the labels in Kickoff, Kicker and KRunner. Test Plan: Before: {F6521497} After: {F6521498} Reviewers: ngraham, #plasma, #vdg Reviewed By: ngraham, #vdg Subscribers: abetts, filipf, plasma-devel Tags: #plasma Maniphest Tasks: T10258 Differential Revision: https://phabricator.kde.org/D17935 --- applets/clipboard/contents/ui/ClipboardPage.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/applets/clipboard/contents/ui/ClipboardPage.qml b/applets/clipboard/contents/ui/ClipboardPage.qml index c423110c3..f57e7880d 100644 --- a/applets/clipboard/contents/ui/ClipboardPage.qml +++ b/applets/clipboard/contents/ui/ClipboardPage.qml @@ -91,7 +91,7 @@ ColumnLayout { PlasmaComponents.TextField { id: filter - placeholderText: i18n("Search") + placeholderText: i18n("Search...") clearButtonShown: true Layout.fillWidth: true }