Skip to content

Commit

Permalink
Fix media player (#2257)
Browse files Browse the repository at this point in the history
  • Loading branch information
paulocoutinhox authored Dec 5, 2024
1 parent 63e1425 commit 2161dd8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/ui/UIMediaPlayer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1271,10 +1271,10 @@ void MediaPlayer::pause()
void MediaPlayer::resume()
{
resumePlayback();
Widget::pause();
Widget::resume();
}

void MediaPlayer::pausePlayback()
void MediaPlayer::pausePlayback()
{
if (!_videoURL.empty())
{
Expand Down

0 comments on commit 2161dd8

Please sign in to comment.