i18n: small fix

autoformat
This commit is contained in:
Ly-sec
2025-09-25 02:44:27 +02:00
parent 46d3465b50
commit ef616efcca
4 changed files with 71 additions and 23 deletions
+5 -5
View File
@@ -72,8 +72,6 @@ Item {
radius: (barPosition === "left" || barPosition === "right") ? width / 2 : Math.round(Style.radiusM * scaling)
color: Settings.data.bar.showCapsule ? Color.mSurfaceVariant : Color.transparent
Item {
id: mainContainer
anchors.fill: parent
@@ -359,7 +357,8 @@ Item {
}
onEntered: {
if (scrollingMode !== "never") return
if (scrollingMode !== "never")
return
if (barPosition === "left" || barPosition === "right") {
tooltip.show()
} else if (tooltip.text !== "") {
@@ -367,7 +366,8 @@ Item {
}
}
onExited: {
if (scrollingMode !== "never") return
if (scrollingMode !== "never")
return
if (barPosition === "left" || barPosition === "right") {
tooltip.hide()
} else {
@@ -400,4 +400,4 @@ Item {
positionAbove: Settings.data.bar.position === "bottom"
delay: Style.tooltipDelayLong
}
}
}