diff options
-rw-r--r-- | sys/xvimage/xvimagesink.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sys/xvimage/xvimagesink.c b/sys/xvimage/xvimagesink.c index bb348b45..3e4fe769 100644 --- a/sys/xvimage/xvimagesink.c +++ b/sys/xvimage/xvimagesink.c @@ -914,6 +914,8 @@ gst_xvimagesink_xwindow_new (GstXvImageSink * xvimagesink, { GstXWindow *xwindow = NULL; XGCValues values; + XTextProperty xproperty; + const gchar *title; g_return_val_if_fail (GST_IS_XVIMAGESINK (xvimagesink), NULL); @@ -934,6 +936,11 @@ gst_xvimagesink_xwindow_new (GstXvImageSink * xvimagesink, * ConfigureNotify. This takes away flickering of video when resizing. */ XSetWindowBackgroundPixmap (xvimagesink->xcontext->disp, xwindow->win, None); + /* set application name as a title */ + title = g_get_application_name (); + if ((XStringListToTextProperty (((char **) &title), 1, &xproperty)) != 0) + XSetWMName (xvimagesink->xcontext->disp, xwindow->win, &xproperty); + if (xvimagesink->handle_events) { Atom wm_delete; |