1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 10:17:35 +00:00

VideoPlayer: Pause while the user is dragging the seek bar

This commit is contained in:
Zaggy1024 2023-02-05 19:40:52 -06:00 committed by Sam Atkins
parent d9a73bbc96
commit 9e61e48b31
2 changed files with 17 additions and 3 deletions

View file

@ -68,6 +68,8 @@ private:
RefPtr<GUI::Action> m_use_fast_seeking;
OwnPtr<Video::PlaybackManager> m_playback_manager;
bool m_was_playing_before_seek { false };
};
}