Taskbar: fix warning due to non existing property.

This commit is contained in:
ItsLemmy
2025-09-27 16:12:11 -04:00
parent 348c1e8f9f
commit 2112f675c0
+3 -3
View File
@@ -106,9 +106,9 @@ Rectangle {
id: taskbarTooltip
text: taskbarItem.modelData.title || taskbarItem.modelData.appId || "Unknown app."
target: taskbarItem
positionAbove: barPosition === "bottom"
positionLeft: barPosition === "right"
positionRight: barPosition === "left"
positionAbove: Settings.data.bar.position === "bottom"
positionLeft: Settings.data.bar.position === "right"
positionRight: Settings.data.bar.position === "left"
}
}
}