Read modality flag before handling groups (for #82648).
svn path=/trunk/kdebase/kwin/; revision=317399
This commit is contained in:
parent
03bdeb94b0
commit
319f8bf67a
1 changed files with 1 additions and 1 deletions
|
@ -118,6 +118,7 @@ bool Client::manage( Window w, bool isMapped )
|
||||||
fetchIconicName();
|
fetchIconicName();
|
||||||
getWMHints(); // needs to be done before readTransient() because of reading the group
|
getWMHints(); // needs to be done before readTransient() because of reading the group
|
||||||
getWmClientLeader(); // needs to be done before readTransient() because of same app comparing
|
getWmClientLeader(); // needs to be done before readTransient() because of same app comparing
|
||||||
|
modal = ( info->state() & NET::Modal ) != 0; // needs to be valid before handling groups
|
||||||
readTransient();
|
readTransient();
|
||||||
getIcons();
|
getIcons();
|
||||||
getWindowProtocols();
|
getWindowProtocols();
|
||||||
|
@ -127,7 +128,6 @@ bool Client::manage( Window w, bool isMapped )
|
||||||
|
|
||||||
original_skip_taskbar = skip_taskbar = ( info->state() & NET::SkipTaskbar) != 0;
|
original_skip_taskbar = skip_taskbar = ( info->state() & NET::SkipTaskbar) != 0;
|
||||||
skip_pager = ( info->state() & NET::SkipPager) != 0;
|
skip_pager = ( info->state() & NET::SkipPager) != 0;
|
||||||
modal = ( info->state() & NET::Modal ) != 0;
|
|
||||||
|
|
||||||
KStartupInfoId asn_id;
|
KStartupInfoId asn_id;
|
||||||
KStartupInfoData asn_data;
|
KStartupInfoData asn_data;
|
||||||
|
|
Loading…
Reference in a new issue