Initialise gaps for pertag arrays when monitor is created ref. #106

This commit is contained in:
bakkeby
2021-04-05 08:14:27 +02:00
parent 521f87af13
commit 39df1ca4ad
2 changed files with 8 additions and 6 deletions

6
dwm.c
View File

@ -1608,9 +1608,11 @@ createmon(void)
#endif // MONITOR_RULES_PATCH
m->pertag->sellts[i] = m->sellt;
#if VANITYGAPS_PATCH
#if PERTAG_VANITYGAPS_PATCH && VANITYGAPS_PATCH
m->pertag->enablegaps[i] = 1;
#endif // VANITYGAPS_PATCH
m->pertag->gaps[i] =
((gappoh & 0xFF) << 0) | ((gappov & 0xFF) << 8) | ((gappih & 0xFF) << 16) | ((gappiv & 0xFF) << 24);
#endif // PERTAG_VANITYGAPS_PATCH | VANITYGAPS_PATCH
}
#endif // PERTAG_PATCH
#if INSETS_PATCH