summaryrefslogtreecommitdiff
path: root/x11-wm/awesome2/files/extrapatch-lowerfloat
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2008-02-24 03:11:57 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2008-02-24 03:11:57 +0000
commitfa4a943c17e47bf910596a414fd7287983350b9b (patch)
treedc76cec18a505befc330e612e0a56bf1caa5ca49 /x11-wm/awesome2/files/extrapatch-lowerfloat
parent- Fix manpage pointing to correct PREFIX for binary and conf (diff)
This commit was manufactured by cvs2svn to create tag 'RELEASE_7_0_0'.release/7.0.0
Diffstat (limited to 'x11-wm/awesome2/files/extrapatch-lowerfloat')
-rw-r--r--x11-wm/awesome2/files/extrapatch-lowerfloat29
1 files changed, 0 insertions, 29 deletions
diff --git a/x11-wm/awesome2/files/extrapatch-lowerfloat b/x11-wm/awesome2/files/extrapatch-lowerfloat
deleted file mode 100644
index cd23c3bce440..000000000000
--- a/x11-wm/awesome2/files/extrapatch-lowerfloat
+++ /dev/null
@@ -1,29 +0,0 @@
---- layout.c.orig 2007-09-26 12:08:27.000000000 +0300
-+++ layout.c 2007-09-26 17:41:42.000000000 +0300
-@@ -118,25 +118,7 @@
- drawstatusbar(disp, drawcontext, awesomeconf);
- if(!sel)
- return;
-- if(sel->isfloating || IS_ARRANGE(layout_floating))
-- XRaiseWindow(disp, sel->win);
-- if(!IS_ARRANGE(layout_floating))
-- {
-- wc.stack_mode = Below;
-- wc.sibling = awesomeconf->statusbar.window;
-- if(!sel->isfloating)
-- {
-- XConfigureWindow(disp, sel->win, CWSibling | CWStackMode, &wc);
-- wc.sibling = sel->win;
-- }
-- for(c = clients; c; c = c->next)
-- {
-- if(!IS_TILED(c, awesomeconf->screen, awesomeconf->tags, awesomeconf->ntags) || c == sel)
-- continue;
-- XConfigureWindow(disp, c->win, CWSibling | CWStackMode, &wc);
-- wc.sibling = c->win;
-- }
-- }
-+ XRaiseWindow(disp, sel->win);
- XSync(disp, False);
- while(XCheckMaskEvent(disp, EnterWindowMask, &ev));
- }