Properly clear the urgency hint when set by i3.

fixes #1825
This commit is contained in:
Michael Stapelberg
2015-08-02 20:50:14 +02:00
parent 03799dd851
commit 21d4b2319f
4 changed files with 79 additions and 10 deletions

View File

@ -202,7 +202,7 @@ bool tree_close(Con *con, kill_window_t kill_window, bool dont_kill_parent, bool
/* remove the urgency hint of the workspace (if set) */
if (con->urgent) {
con->urgent = false;
con_set_urgency(con, false);
con_update_parents_urgency(con);
workspace_update_urgent_flag(con_get_workspace(con));
}