isolating spawn to only current pressed tag in comboview

This commit is contained in:
salivala 2025-11-11 13:08:42 -05:00
parent ea4118fa45
commit 9fe6d09048

View file

@ -834,7 +834,10 @@ int comboview_spawn_on_empty(const Arg *arg) {
view(&(Arg){.ui = newtags}, false);
}
if (is_empty) {
unsigned int old = selmon->tagset[selmon->seltags];
selmon->tagset[selmon->seltags] = newtags;
spawn(arg);
selmon->tagset[selmon->seltags] = old;
}
printstatus();