From 3c46d6d1bd8a1b6c54cbc18f41d09ffc52273698 Mon Sep 17 00:00:00 2001 From: MaxXor Date: Sun, 17 Sep 2017 18:29:41 +0200 Subject: [PATCH] Add separator below Settings menu button --- LeftPanel.qml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/LeftPanel.qml b/LeftPanel.qml index 4c47c897..0368063e 100644 --- a/LeftPanel.qml +++ b/LeftPanel.qml @@ -477,6 +477,14 @@ Rectangle { panel.settingsClicked() } } + Rectangle { + visible: settingsButton.present + anchors.left: parent.left + anchors.right: parent.right + anchors.leftMargin: 16 + color: "#505050" + height: 1 + } }