aboutsummaryrefslogtreecommitdiff
path: root/dwl.c
diff options
context:
space:
mode:
authorDevin J. Pohly <djpohly@gmail.com>2020-08-02 00:35:26 -0500
committerDevin J. Pohly <djpohly@gmail.com>2020-08-02 00:35:26 -0500
commit62339e7ab0d33b8d4a2dc0468b757b2a43edb658 (patch)
treeae4698714e1b24198ab38bd097929a3a7335b194 /dwl.c
parente41ed533842d5ed9688eb705ca48b82d0080dfe5 (diff)
make setmon a bit more straightforward
Diffstat (limited to 'dwl.c')
-rw-r--r--dwl.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/dwl.c b/dwl.c
index 515a6ff..c744707 100644
--- a/dwl.c
+++ b/dwl.c
@@ -1427,27 +1427,27 @@ setmfact(const Arg *arg)
void
setmon(Client *c, Monitor *m, unsigned int newtags)
{
- int hadfocus;
Monitor *oldmon = c->mon;
- struct wlr_surface *surface = WLR_SURFACE(c);
+ Client *oldsel = selclient();
+
if (oldmon == m)
return;
- hadfocus = (c == selclient());
c->mon = m;
+
/* XXX leave/enter is not optimal but works */
if (oldmon) {
- wlr_surface_send_leave(surface, oldmon->wlr_output);
+ wlr_surface_send_leave(WLR_SURFACE(c), oldmon->wlr_output);
arrange(oldmon);
}
if (m) {
/* Make sure window actually overlaps with the monitor */
applybounds(c, &m->m);
- wlr_surface_send_enter(surface, m->wlr_output);
+ wlr_surface_send_enter(WLR_SURFACE(c), m->wlr_output);
c->tags = newtags ? newtags : m->tagset[m->seltags]; /* assign tags of target monitor */
arrange(m);
}
/* Focus can change if c is the top of selmon before or after */
- if (hadfocus || c == selclient())
+ if (c == oldsel || c == selclient())
focusclient(lastfocused(), NULL, 1);
}