Fix (t.i. update) taskbar window-titles when changing window-decorations.

svn path=/trunk/kdebase/kwin/; revision=77928
This commit is contained in:
Waldo Bastian 2001-01-14 06:24:49 +00:00
parent 91bbdba599
commit 54a5d1b900

View file

@ -2848,7 +2848,9 @@ void Client::cloneMode(Client *client)
geom_restore = client->geom_restore; geom_restore = client->geom_restore;
max_mode = client->max_mode; max_mode = client->max_mode;
state = client->state; state = client->state;
setCaption(client->caption()); QString caption = client->caption();
setCaption(caption);
info->setVisibleName( caption.utf8() );
} }
NETWinInfo * Client::netWinInfo() NETWinInfo * Client::netWinInfo()