Skip to content

Commit

Permalink
expand home rows to take up full width of the screen
Browse files Browse the repository at this point in the history
  • Loading branch information
cewert committed Aug 1, 2024
1 parent 3b5bb33 commit 41cead3
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions components/home/HomeRows.bs
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,14 @@ sub loadLibraries()
end sub

sub updateSize()
m.top.translation = [111, 180]
itemHeight = 330
m.top.translation = [0, 180]

'Set width of Rows to cut off at edge of Safe Zone
m.top.itemSize = [1703, itemHeight]
' rows take up full width of the screen
m.top.itemSize = [1920, 330]

' align with edge of "action" safe zone
m.top.focusXOffset = [96]
m.top.rowLabelOffset = [96, 20]

' spacing between rows
m.top.itemSpacing = [0, 105]
Expand Down

0 comments on commit 41cead3

Please sign in to comment.