removed pop unnecessary pop function to speed up install
This commit is contained in:
parent
b75ef3588c
commit
c5596677d7
18
dwm.c
18
dwm.c
@ -190,7 +190,7 @@ static void monocle(Monitor *m);
|
||||
static void motionnotify(XEvent *e);
|
||||
static void movemouse(const Arg *arg);
|
||||
static Client *nexttiled(Client *c);
|
||||
static void pop(Client *);
|
||||
//static void pop(Client *);
|
||||
static void propertynotify(XEvent *e);
|
||||
static void quit(const Arg *arg);
|
||||
static Monitor *recttomon(int x, int y, int w, int h);
|
||||
@ -1263,14 +1263,14 @@ nexttiled(Client *c)
|
||||
return c;
|
||||
}
|
||||
|
||||
void
|
||||
pop(Client *c)
|
||||
{
|
||||
detach(c);
|
||||
attach(c);
|
||||
focus(c);
|
||||
arrange(c->mon);
|
||||
}
|
||||
//void
|
||||
//pop(Client *c)
|
||||
//{
|
||||
// detach(c);
|
||||
// attach(c);
|
||||
// focus(c);
|
||||
// arrange(c->mon);
|
||||
//}
|
||||
|
||||
void
|
||||
propertynotify(XEvent *e)
|
||||
|
Loading…
Reference in New Issue
Block a user