Skip to content

Commit

Permalink
fix timeline height on desktop
Browse files Browse the repository at this point in the history
  • Loading branch information
minetoblend committed Feb 12, 2024
1 parent 4a908f0 commit c36c696
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ export class EditorViewportDrawable extends Drawable {
const bounds = new Rect(0, 0, this.canvasSize.width, this.canvasSize.height);

this.timeline.setBounds(
bounds.splitBottom(75),
bounds.splitBottom(85),
)

this.toolbar.setBounds(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export class MobileTimelineDrawable extends Component {

this.playButton.setBounds(bounds.splitLeft(bounds.height))

const seekbarBounds = bounds.splitBottom(this.size.y * 0.25)
const seekbarBounds = bounds.splitBottom(this.size.y * 0.2)
this.seekBar.setBounds(seekbarBounds)

bounds.splitBottom(5)
Expand Down

0 comments on commit c36c696

Please sign in to comment.