Skip to content

Commit

Permalink
remove the safe margin
Browse files Browse the repository at this point in the history
  • Loading branch information
m-derakhshan committed Aug 19, 2024
1 parent 58756df commit dd628bd
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
18 changes: 18 additions & 0 deletions .idea/deploymentTargetSelector.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion ui/src/main/java/com/theoplayer/android/ui/SeekBar.kt
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ fun SeekBar(
modifier = modifier.systemGestureExclusion {
Rect(
topLeft = Offset(0f, 0f),
bottomRight = Offset(it.size.width.toFloat(), it.size.height.toFloat() + 20)
bottomRight = Offset(it.size.width.toFloat(), it.size.height.toFloat())
)
},
colors = colors,
Expand Down

0 comments on commit dd628bd

Please sign in to comment.