From 2de44e3fd049abd916d19d56583cce7dcfc337a5 Mon Sep 17 00:00:00 2001 From: Johan Smith Agudelo Rodriguez Date: Mon, 5 Jun 2017 18:21:52 -0500 Subject: [PATCH] drop down button #522 --- .../configuration/LatteDockConfiguration.qml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/shell/package/contents/configuration/LatteDockConfiguration.qml b/shell/package/contents/configuration/LatteDockConfiguration.qml index 8574e58e4..4107d1867 100644 --- a/shell/package/contents/configuration/LatteDockConfiguration.qml +++ b/shell/package/contents/configuration/LatteDockConfiguration.qml @@ -299,7 +299,22 @@ PlasmaCore.FrameSvgItem { Component.onCompleted: { enabled = dock.freeEdges().length > 0 } + + PlasmaCore.IconItem { + source: "arrow-down" + anchors.right: parent.right + anchors.verticalCenter: parent.verticalCenter + Layout.preferredWidth: units.iconSizes.medium + Layout.preferredHeight: parent.height + + MouseArea { + anchors.fill: parent + onClicked: { + } + } + } } + PlasmaComponents.Button { id: removeDock