Toplevel menubar is not sticky.

svn path=/trunk/kdebase/kwin/; revision=163046
icc-effect-5.14.5
Luboš Luňák 2002-06-25 07:42:01 +00:00
parent 169dee11e9
commit 5380502347
1 changed files with 3 additions and 1 deletions

View File

@ -228,7 +228,6 @@ Client* Workspace::clientFactory( WId w )
case NET::Tool:
return ( mgr->allocateClient( this, w, true ) );
case NET::Menu:
case NET::Dock:
{
Client * c = new NoBorderClient( this, w );
@ -236,6 +235,9 @@ Client* Workspace::clientFactory( WId w )
return c;
}
case NET::Menu:
return new NoBorderClient( this, w );
case NET::Override:
return new NoBorderClient( this, w);