From eeca670a3d369e13bc4a60acda5c436abb869a77 Mon Sep 17 00:00:00 2001 From: Kurt Granroth Date: Tue, 21 Dec 1999 05:54:40 +0000 Subject: [PATCH] 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 --- workspace.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workspace.cpp b/workspace.cpp index 2fcfc1a73b..df75537737 100644 --- a/workspace.cpp +++ b/workspace.cpp @@ -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; }