ScreenCorners: fix when bar is not visible on a screen

This commit is contained in:
quadbyte 2025-08-15 14:48:33 -04:00
parent f80e6a0294
commit a8e7f6e01d
2 changed files with 4 additions and 4 deletions

View file

@ -62,7 +62,6 @@ NLoader {
hidden = true
}
}
}
// Timer for show delay
@ -188,7 +187,7 @@ NLoader {
Image {
id: appIcon
width: iconSize * scaling
height: iconSize * scaling
height: iconSize * scaling
anchors.centerIn: parent
source: dock.getAppIcon(modelData)
visible: source.toString() !== ""
@ -259,7 +258,7 @@ NLoader {
radius: Style.radiusTiny
anchors.top: parent.bottom
anchors.horizontalCenter: parent.horizontalCenter
anchors.topMargin: 2* scaling
anchors.topMargin: 2 * scaling
}
}
}