fix #LINQT-1413 hover in dot popup menu
This commit is contained in:
parent
b25cf4ff15
commit
6f08430661
2 changed files with 6 additions and 2 deletions
|
|
@ -31,7 +31,11 @@ Item{
|
|||
Rectangle{
|
||||
anchors.fill: parent
|
||||
id: buttonBackground
|
||||
color: mainItem.shadowEnabled ? mainItem.backgroundPressedColor : mainItem.backgroundColor
|
||||
color: mainItem.shadowEnabled
|
||||
? mainItem.backgroundPressedColor
|
||||
: mainItem.containsMouse
|
||||
? DefaultStyle.main2_100
|
||||
: mainItem.backgroundColor
|
||||
radius: mainItem.radius
|
||||
}/*
|
||||
MultiEffect {
|
||||
|
|
|
|||
|
|
@ -476,7 +476,7 @@ Item {
|
|||
ColumnLayout {
|
||||
id: settingsButtons
|
||||
anchors.fill: parent
|
||||
spacing: 20 * DefaultStyle.dp
|
||||
spacing: 16 * DefaultStyle.dp
|
||||
|
||||
function getPreviousItem(index){
|
||||
if(visibleChildren.length == 0) return null
|
||||
|
|
|
|||
Loading…
Reference in a new issue