diff options
| author | ProsperousPotato <114923153+ProsperousPotato@users.noreply.github.com> | 2025-07-14 17:09:29 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-07-14 17:09:29 +0100 |
| commit | d72a512a6ec77306618ffcec52953e5034534a34 (patch) | |
| tree | c8157ef2a2c380e1ecef738a22a5ef565392b5b6 /dwm.c | |
| parent | 9f7359ebcb0b4bf93ee0682a8c23be016b88e40e (diff) | |
add quicksearch
Diffstat (limited to 'dwm.c')
| -rw-r--r-- | dwm.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -567,8 +567,8 @@ clientmessage(XEvent *e) setfullscreen(c, (cme->data.l[0] == 1 /* _NET_WM_STATE_ADD */ || (cme->data.l[0] == 2 /* _NET_WM_STATE_TOGGLE */ && !c->isfullscreen))); } else if (cme->message_type == netatom[NetActiveWindow]) { - if (c != selmon->sel && !c->isurgent) - seturgent(c, 1); + if (c != selmon->sel && !c->isurgent) + seturgent(c, 1); } } @@ -1128,7 +1128,7 @@ movemouse(const Arg *arg) if (!(c = selmon->sel)) return; - if (c->isfullscreen) /* no support moving fullscreen windows by mouse */ + if (c->isfullscreen) return; restack(selmon); ocx = c->x; @@ -1282,7 +1282,7 @@ resizemouse(const Arg *arg) if (!(c = selmon->sel)) return; - if (c->isfullscreen) /* no support resizing fullscreen windows by mouse */ + if (c->isfullscreen) return; restack(selmon); ocx = c->x; |
