fix scratchpad detection when moving traditionally

This commit is contained in:
2021-11-28 09:51:18 +01:00
parent 4f2ca2dcba
commit 1c5f297796

3
dwm.c
View File

@ -1496,7 +1496,8 @@ scan(void)
void
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