summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-06-15 19:04:20 +0200
committerwm4 <wm4@nowhere>2013-06-15 19:07:21 +0200
commit168a595bfeb97be89da314dcc652b7c4782e43e5 (patch)
treec5e88c9eec004a8a5cd66a68ad4b1cdd1382b97a /core
parent70f97efa720ee2366cb6c1eeefb211c11fd88a63 (diff)
downloadmpv-168a595bfeb97be89da314dcc652b7c4782e43e5.tar.bz2
mpv-168a595bfeb97be89da314dcc652b7c4782e43e5.tar.xz
video/out: introduce VOCTRL_UPDATE_WINDOW_TITLE
Instead of implicitly changing the window title on config(), do it as part of the new VOCTRL. At first I wanted to make all VOs use the VOCTRL argument directly, but on a second thought it appears vo_get_window_title() is much more useful for some (namely, if the window is created lazily on first config()). Not all VOs are changed. Wayland and OSX have to follow.
Diffstat (limited to 'core')
-rw-r--r--core/mplayer.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/core/mplayer.c b/core/mplayer.c
index 5e1d58835e..4d6afd656c 100644
--- a/core/mplayer.c
+++ b/core/mplayer.c
@@ -2365,6 +2365,7 @@ static void vo_update_window_title(struct MPContext *mpctx)
char *title = mp_property_expand_string(mpctx, mpctx->opts.wintitle);
talloc_free(mpctx->video_out->window_title);
mpctx->video_out->window_title = talloc_steal(mpctx, title);
+ vo_control(mpctx->video_out, VOCTRL_UPDATE_WINDOW_TITLE, title);
}
static void update_fps(struct MPContext *mpctx)