Skip to content

Commit 7f18c0a

Browse files
committed
🔧 updated changelog
* and fixed ui inconsistencies
1 parent b7be88f commit 7f18c0a

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

CHANGELOG.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,12 @@
22

33
## 5.5.0
44
- Translation updates
5-
- Redid all icons
6-
- Fixed Synced lyrics anchoring to the bottom
5+
- Redid all icons. (reason)[https://x.com/riggaroo/status/1971485475866341530?s=20]
6+
- Fixed Synced lyrics anchoring to the bottom (#199)
77
- Added Scale to the current synced lyric
8-
- Added Controls for media
9-
- Added Action bar in landscape mode
8+
- Added Controls for media (#204)
9+
- Added Action bar in landscape mode (#210)
10+
- All screens are now usable in landscape mode and larger devices.
1011

1112
## 5.4.2
1213
- Trimmed unneeded network calls

app/src/main/java/com/shub39/rush/presentation/lyrics/section/LyricsCustomisationPage.kt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,11 +142,12 @@ fun LyricsCustomisationsPage(
142142
modifier = modifier
143143
) { paddingValues ->
144144
LazyColumn(
145-
modifier = Modifier.fillMaxSize(),
145+
modifier = Modifier
146+
.padding(top = paddingValues.calculateTopPadding())
147+
.fillMaxSize(),
146148
contentPadding = PaddingValues(
147149
start = paddingValues.calculateLeftPadding(LocalLayoutDirection.current),
148150
end = paddingValues.calculateRightPadding(LocalLayoutDirection.current),
149-
top = paddingValues.calculateTopPadding() + 16.dp,
150151
bottom = paddingValues.calculateBottomPadding() + 60.dp
151152
),
152153
verticalArrangement = Arrangement.spacedBy(16.dp)

0 commit comments

Comments
 (0)