Skip to content

Commit f42f3f7

Browse files
committed
Fix the Tips & Tricks being all displayed over each other
Fix: Fix the Tips & Tricks all being displayed over each other
1 parent 2bac1c8 commit f42f3f7

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

ui.qml.in

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1041,6 +1041,10 @@ Item {
10411041

10421042
component UIHint : Item {
10431043
id: hint
1044+
// Workaround: Dynamically added SwipeView items are all visible at x=0
1045+
// until SwipeView preloads them. Only show when properly positioned.
1046+
visible: SwipeView.isCurrentItem || SwipeView.isPreviousItem || SwipeView.isNextItem
1047+
10441048
property var target
10451049
property real targetX
10461050
property real targetY

0 commit comments

Comments
 (0)