1
0
mirror of https://github.com/zhuzichu520/FluentUI.git synced 2025-04-30 15:07:22 +08:00
This commit is contained in:
朱子楚\zhuzi 2023-08-27 11:24:48 +08:00
parent e2879f564c
commit e30db258ca
2 changed files with 2 additions and 2 deletions
src
Qt5/imports/FluentUI/Controls
Qt6/imports/FluentUI/Controls

@ -67,7 +67,7 @@ T.Slider {
} }
FluTooltip{ FluTooltip{
parent: control.handle parent: control.handle
visible: control.tooltipEnabled && control.pressed visible: control.tooltipEnabled && (control.pressed || control.hovered)
text:String(control.value) text:String(control.value)
} }
} }

@ -68,7 +68,7 @@ T.Slider {
} }
FluTooltip{ FluTooltip{
parent: control.handle parent: control.handle
visible: control.tooltipEnabled && control.pressed visible: control.tooltipEnabled && (control.pressed || control.hovered)
text:String(control.value) text:String(control.value)
} }
} }