fix #LINQT-1413 hover in dot popup menu

This commit is contained in:
gaelle 2024-11-13 17:05:29 +01:00 committed by Gaelle Braud
parent b25cf4ff15
commit 6f08430661
2 changed files with 6 additions and 2 deletions

View file

@ -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 {

View file

@ -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