Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions player/command.c
Original file line number Diff line number Diff line change
Expand Up @@ -8120,6 +8120,9 @@ void mp_option_run_callback(struct MPContext *mpctx, struct mp_option_callback *
if (opt_ptr == &opts->vo->taskbar_progress)
update_vo_playback_state(mpctx);

if (opt_ptr == &opts->force_vo)
handle_force_window(mpctx, false);

if (opt_ptr == &opts->image_display_duration && mpctx->vo_chain
&& mpctx->vo_chain->is_sparse && !mpctx->ao_chain
&& mpctx->video_status == STATUS_DRAINING)
Expand Down
2 changes: 0 additions & 2 deletions player/playloop.c
Original file line number Diff line number Diff line change
Expand Up @@ -1315,8 +1315,6 @@ void run_playloop(struct MPContext *mpctx)
handle_option_callbacks(mpctx);

handle_chapter_change(mpctx);

handle_force_window(mpctx, false);
}

void mp_idle(struct MPContext *mpctx)
Expand Down
Loading