Skip to content

Commit

Permalink
Gallery: Reduce default Album size to 178.dp
Browse files Browse the repository at this point in the history
Now it properly displays 2 columns of albums for Samsung devices as well

Fixes #142

Signed-off-by: IacobIonut01 <[email protected]>
  • Loading branch information
IacobIonut01 committed Aug 28, 2023
1 parent 13337a1 commit 36df389
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/main/kotlin/com/dot/gallery/ui/theme/Dimens.kt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import androidx.compose.ui.unit.dp

sealed class Dimens(val size: Dp) {
object Photo : Dimens(size = 100.dp)
object Album : Dimens(size = 182.dp)
object Album : Dimens(size = 178.dp)

operator fun invoke(): Dp = size
}

0 comments on commit 36df389

Please sign in to comment.