Skip to content

Commit

Permalink
Fix lay-outing issues
Browse files Browse the repository at this point in the history
  • Loading branch information
DRSchlaubi committed Aug 28, 2024
1 parent 8241473 commit bc1b798
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion app/desktop/src/windowsMain/kotlin/Platform.kt
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ private class WindowsPlatform : IPlatform {
setToken(token)
} catch (e: Exception) {
e.printStackTrace()
Thread.sleep(50000)
}
startApplication()
} else {
Expand Down
4 changes: 2 additions & 2 deletions app/shared/src/commonMain/kotlin/components/SoundContainer.kt
Original file line number Diff line number Diff line change
Expand Up @@ -141,8 +141,8 @@ private fun SoundGroup(
FlowGrid(
GridCells.Adaptive(160.dp),
group.sounds,
horizontalArrangement = Arrangement.spacedBy(5.dp),
verticalArrangement = Arrangement.spacedBy(5.dp),
horizontalArrangement = Arrangement.spacedBy(3.dp),
verticalArrangement = Arrangement.spacedBy(3.dp),
modifier = Modifier.canClearFocus()
) { (id, name, _, description, emoji) ->
SoundCard(
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {

allprojects {
group = "dev.schlaubi.tonbrett"
version = "1.21.3"
version = "1.21.4"

repositories {
mavenCentral()
Expand Down

0 comments on commit bc1b798

Please sign in to comment.