Removing workaround to ensure that floating master stays on top, ref. #20
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
atypedef struct {
|
||||
typedef struct {
|
||||
void (*arrange)(Monitor *, int, int, int, int, int, int, int);
|
||||
} LayoutArranger;
|
||||
|
||||
@@ -316,9 +316,6 @@ layout_floating_master_fixed(Monitor *m, int x, int y, int h, int w, int ih, int
|
||||
y = y + (h - mh) / 2;
|
||||
|
||||
(&flextiles[m->ltaxis[MASTER]])->arrange(m, x, y, mh, mw, ih, iv, n, m->nmaster, 0);
|
||||
if (n > 1)
|
||||
reattachstack(m, m->nmaster, 0);
|
||||
restack(m);
|
||||
}
|
||||
|
||||
static void
|
||||
@@ -669,16 +666,3 @@ incnstack(const Arg *arg)
|
||||
#endif // PERTAG_PATCH
|
||||
arrange(selmon);
|
||||
}
|
||||
|
||||
void
|
||||
reattachstack(Monitor *m, int an, int ai)
|
||||
{
|
||||
unsigned int i;
|
||||
Client *c;
|
||||
|
||||
for (i = 0, c = nexttiled(m->clients); c; c = nexttiled(c->next), i++)
|
||||
if (i >= ai && i < (ai + an)) {
|
||||
detachstack(c);
|
||||
attachstack(c);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user