Closed Ampnbsp closed 6 months ago
RULE(.class = "ArmCord", .monitor = 1, .switchtag = 3, .tags = 1 << 7)
After these steps the focus duplicates.
This issue was fixed with unfocus(selmon->sel, 1, NULL); before the selmon = c->mon; and it seems work fine.
unfocus(selmon->sel, 1, NULL);
I have looked at this again and the unfocus call makes sense where you added it. Have committed it now. Thanks for highlighting.
How to reproduce
RULE(.class = "ArmCord", .monitor = 1, .switchtag = 3, .tags = 1 << 7)
;After these steps the focus duplicates.
This issue was fixed with
unfocus(selmon->sel, 1, NULL);
before the selmon = c->mon; and it seems work fine.