From cc22693504111dd23290a0ec52224c330b0e55b4 Mon Sep 17 00:00:00 2001 From: rating89us <45968869+rating89us@users.noreply.github.com> Date: Tue, 14 Jan 2020 22:02:02 -0300 Subject: [PATCH] StandardDropdown: remove dots from upper corners --- components/StandardDropdown.qml | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/components/StandardDropdown.qml b/components/StandardDropdown.qml index dca9ebe9..8d13c2f3 100644 --- a/components/StandardDropdown.qml +++ b/components/StandardDropdown.qml @@ -137,20 +137,6 @@ Item { height: dropdown.expanded ? columnid.height : 0 color: dropdown.pressedColor - Rectangle { - anchors.left: parent.left - anchors.top: parent.top - width: 3; height: 3 - color: dropdown.pressedColor - } - - Rectangle { - anchors.right: parent.right - anchors.top: parent.top - width: 3; height: 3 - color: dropdown.pressedColor - } - Behavior on height { NumberAnimation { duration: 100; easing.type: Easing.InQuad } }