Render containers as urgent if they have an urgent child

This commit is contained in:
Ryan Dwyer 2018-07-16 18:22:27 +10:00
parent be28c18ad5
commit af5f736277
2 changed files with 9 additions and 4 deletions

View file

@ -526,5 +526,6 @@ void workspace_detect_urgent(struct sway_container *workspace) {
if (workspace->sway_workspace->urgent != new_urgent) {
workspace->sway_workspace->urgent = new_urgent;
ipc_event_workspace(NULL, workspace, "urgent");
container_damage_whole(workspace);
}
}