Merge remote-tracking branch 'upstream/master'

This commit is contained in:
Sravan Balaji
2023-05-20 13:51:40 -04:00
2 changed files with 1 additions and 6 deletions

5
dwm.c
View File

@@ -965,12 +965,7 @@ applyrules(Client *c)
if (r->switchtag == 3 || r->switchtag == 4)
c->switchtag = c->mon->tagset[c->mon->seltags];
if (r->switchtag == 1 || r->switchtag == 3) {
#if PERTAG_PATCH
pertagview(&((Arg) { .ui = newtagset }));
arrange(c->mon);
#else
view(&((Arg) { .ui = newtagset }));
#endif // PERTAG_PATCH
} else {
#if TAGSYNC_PATCH
for (m = mons; m; m = m->next)

View File

@@ -21,7 +21,7 @@ struct Pertag {
#endif // ZOOMSWAP_PATCH
#if PERTAG_VANITYGAPS_PATCH && VANITYGAPS_PATCH
int enablegaps[NUMTAGS + 1];
unsigned int gaps[NUMTAGS + 1];
int gaps[NUMTAGS + 1];
#endif // PERTAG_VANITYGAPS_PATCH | VANITYGAPS_PATCH
};