summaryrefslogtreecommitdiff
path: root/x11-wm/awesome2/files/extrapatch-lowerfloat
diff options
context:
space:
mode:
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));
- }