oops, motif noBorder hint was slightly broken
svn path=/trunk/kdebase/kwin/; revision=55753
This commit is contained in:
parent
4bec1c366d
commit
ad1f6da5a2
1 changed files with 7 additions and 6 deletions
|
@ -148,7 +148,8 @@ Client* Workspace::clientFactory( WId w )
|
||||||
{
|
{
|
||||||
NETWinInfo ni( qt_xdisplay(), w, root, NET::WMWindowType );
|
NETWinInfo ni( qt_xdisplay(), w, root, NET::WMWindowType );
|
||||||
|
|
||||||
if ( ni.windowType() == NET::Normal && Motif::noBorder( w ) )
|
if ( (ni.windowType() == NET::Normal || ni.windowType() == NET::Unknown)
|
||||||
|
&& Motif::noBorder( w ) )
|
||||||
return new NoBorderClient( this, w );
|
return new NoBorderClient( this, w );
|
||||||
|
|
||||||
switch ( ni.windowType() ) {
|
switch ( ni.windowType() ) {
|
||||||
|
|
Loading…
Reference in a new issue