Skip to content
Snippets Groups Projects
Commit 05041d79 authored by tatiana.novikova's avatar tatiana.novikova
Browse files

[-] Delete rounding of comboBox

parent 7eac2dad
No related branches found
No related tags found
1 merge request!16[-] Delete rounding of comboBox
This commit is part of merge request !16. Comments created here will be created in the context of that merge request.
......@@ -86,7 +86,6 @@ ComboBox
{
anchors.fill: parent
color: parent.popup.visible ? hilightTopColor : normalTopColor
radius: 2 * pt
height: parent.height
}
......@@ -130,7 +129,7 @@ ComboBox
anchors.fill: parent
}
DropShadow
DropShadow
{
anchors.fill: parent
source: contentCorner
......@@ -144,18 +143,10 @@ ComboBox
//Shadow effect for the top element.
DropShadow
{
anchors.fill: if (topEffect)
parent
source: if (topEffect)
background
verticalOffset: if (topEffect)
9 * pt
else 0
samples: if (topEffect)
13 * pt
else 0
color: if (topEffect)
dapComboBox.popup.visible ? colorDropShadow : colorTopNormalDropShadow
else "#000000"
anchors.fill: topEffect ? parent : null
source: topEffect ? background : null
verticalOffset: topEffect ? 9 * pt : 0
samples: topEffect ? 13 * pt : 0
color: topEffect ? (dapComboBox.popup.visible ? colorDropShadow : colorTopNormalDropShadow) : "#000000"
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment