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{
|
Rectangle{
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
id: buttonBackground
|
id: buttonBackground
|
||||||
color: mainItem.shadowEnabled ? mainItem.backgroundPressedColor : mainItem.backgroundColor
|
color: mainItem.shadowEnabled
|
||||||
|
? mainItem.backgroundPressedColor
|
||||||
|
: mainItem.containsMouse
|
||||||
|
? DefaultStyle.main2_100
|
||||||
|
: mainItem.backgroundColor
|
||||||
radius: mainItem.radius
|
radius: mainItem.radius
|
||||||
}/*
|
}/*
|
||||||
MultiEffect {
|
MultiEffect {
|
||||||
|
|
|
||||||
|
|
@ -476,7 +476,7 @@ Item {
|
||||||
ColumnLayout {
|
ColumnLayout {
|
||||||
id: settingsButtons
|
id: settingsButtons
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
spacing: 20 * DefaultStyle.dp
|
spacing: 16 * DefaultStyle.dp
|
||||||
|
|
||||||
function getPreviousItem(index){
|
function getPreviousItem(index){
|
||||||
if(visibleChildren.length == 0) return null
|
if(visibleChildren.length == 0) return null
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue