fix scratchpad detection when moving traditionally

This commit is contained in:
Alexander Bocken 2021-11-28 09:51:18 +01:00
parent 4f2ca2dcba
commit 1c5f297796
Signed by: Alexander
GPG Key ID: 1D237BE83F9B05E8

3
dwm.c
View File

@ -1496,7 +1496,8 @@ scan(void)
void void
sendmon(Client *c, Monitor *m) sendmon(Client *c, Monitor *m)
{ {
sendmontags(c, m, m->tagset[m->seltags]); unsigned int tags_without_sp=m->tagset[m->seltags] & TAGMASK;
sendmontags(c, m, tags_without_sp);
} }
void void