Current gaps are set to default_gaps at init

This commit is contained in:
2024-11-01 06:12:33 +00:00
parent e8462f62cf
commit 0837a17cc2

4
dwm.c
View File

@@ -729,8 +729,8 @@ createmon(void)
m->pertag->sellts[i] = m->sellt;
m->pertag->showbars[i] = m->showbar;
m->pertag->gaps_current[i] = 0;
m->pertag->gaps_previous[i] = default_gaps;
m->pertag->gaps_current[i] = default_gaps;
m->pertag->gaps_previous[i] = 0;
}
return m;