I have no clue why I thought I had fixed the floating toolbar

before... doesn't it make sense that [menu] would work for the
MENUBARS?  Yeesh... I'm not sure what I was drinking that day.

Anyway, I think I got it now.  Toolbars use [tools] (how about that!) :-)

svn path=/trunk/kdebase/kwin/; revision=37041
This commit is contained in:
Kurt Granroth 1999-12-21 05:54:40 +00:00
parent 05f34e3f95
commit eeca670a3d

View file

@ -70,7 +70,7 @@ static Client* clientFactory( Workspace *ws, WId w )
c->setSticky( TRUE );
return c;
}
if ( s.right(6) == "[menu]" ) {
if ( ( s.right(6) == "[menu]" ) || ( s.right(7) == "[tools]" ) ) {
Client * c = new NoBorderClient( ws, w);
return c;
}