Commit 6fac9321 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Qt4: set title for the video as we do for other dialogs

parent f240f03f
......@@ -227,6 +227,12 @@ void VideoWidget::SetFullScreen( bool b_fs )
}
reparentable->setParent( NULL, newflags );
reparentable->setWindowState( newstate );
/* FIXME: inherit from the vout window, not the interface */
char *title = var_InheritString( p_intf, "video-title" );
reparentable->setWindowTitle( qfu(title ? title : _("Video")) );
free( title );
reparentable->show();
}
else
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment