From ae9d9cb54664ac246211e4e8e7935580a952a19e Mon Sep 17 00:00:00 2001 From: Jacopo De Simoi Date: Fri, 16 Sep 2022 18:10:43 -0400 Subject: [PATCH] [krunner] Remove pin and help buttons --- krunner/qml/RunCommand.qml | 24 ------------------------ 1 file changed, 24 deletions(-) diff --git a/krunner/qml/RunCommand.qml b/krunner/qml/RunCommand.qml index f890df7e1..ccb3827cf 100644 --- a/krunner/qml/RunCommand.qml +++ b/krunner/qml/RunCommand.qml @@ -218,30 +218,6 @@ ColumnLayout { } } } - PlasmaComponents3.ToolButton { - visible: runnerWindow.helpEnabled - checkable: true - checked: root.query.startsWith("?") - // Reset if out quers starts with "?", otherwise set it to "?" - onClicked: root.query = root.query.startsWith("?") ? "" : "?" - icon.name: "question" - Accessible.name: i18n("Show Usage Help") - Accessible.description: i18n("Show Usage Help") - PlasmaComponents3.ToolTip { - text: i18n("Show Usage Help") - } - } - PlasmaComponents3.ToolButton { - checkable: true - checked: runnerWindow.pinned - onToggled: runnerWindow.pinned = checked - icon.name: "window-pin" - Accessible.name: i18n("Pin") - Accessible.description: i18n("Pin Search") - PlasmaComponents3.ToolTip { - text: i18n("Keep Open") - } - } } PlasmaComponents3.ScrollView {