Merge pull request #2442 from PucklaJ/hyprland_persistent

Show workspaces on all outputs if persistent_workspaces value is empty
This commit is contained in:
Alexis Rouillard 2023-09-01 09:06:41 +02:00 committed by GitHub
commit d7d4a6c632
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -227,6 +227,9 @@ void Workspaces::fill_persistent_workspaces() {
break;
}
}
} else {
// this workspace should be displayed on all monitors
persistent_workspaces_to_create_.emplace_back(key);
}
}
}