We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 34aa8e6 commit 9d06293Copy full SHA for 9d06293
1 file changed
docs/components_ItemDetails.bs.html
@@ -1786,7 +1786,9 @@
1786
1787
' Set X position only — Y is deferred to anchorDateLabel() which runs after the
1788
' button group layout settles (via renderTracking observer).
1789
- m.dateCreatedLabel.translation = [1920 - 96 - 450, 0]
+ ' Preserve the existing Y so that on refresh the label keeps its correct position
1790
+ ' from the previous positioning cycle rather than resetting to 0 (top of screen).
1791
+ m.dateCreatedLabel.translation = [1920 - 96 - 450, m.dateCreatedLabel.translation[1]]
1792
m.dateCreatedLabel.visible = true
1793
end sub
1794
0 commit comments