From 96bb96d14350521f825fc364b1b3728a75f19bf7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Peter=20=C3=85strand?= Date: Wed, 17 Jan 2007 07:39:31 +0000 Subject: [PATCH] Call ewmh_set_wm_name for main window as well, not just SeamlessRDP windows. This allows specifying an UTF-8 title with the -T argument. git-svn-id: svn://svn.code.sf.net/p/rdesktop/code/trunk/rdesktop@1379 423420c4-83ab-492f-b58f-81f9feb106b5 --- xwin.c | 1 + 1 file changed, 1 insertion(+) diff --git a/xwin.c b/xwin.c index 29d847d..74b5aa6 100644 --- a/xwin.c +++ b/xwin.c @@ -1733,6 +1733,7 @@ ui_create_window(void) } XStoreName(g_display, g_wnd, g_title); + ewmh_set_wm_name(g_wnd, g_title); if (g_hide_decorations) mwm_hide_decorations(g_wnd);