Implement the window::urgent event
The window::urgent event is emitted when a container becomes urgent or loses its urgent status.
This commit is contained in:
committed by
Michael Stapelberg
parent
a9c094b731
commit
682fb0a291
@ -320,11 +320,14 @@ static void workspace_reassign_sticky(Con *con) {
|
||||
static void workspace_defer_update_urgent_hint_cb(EV_P_ ev_timer *w, int revents) {
|
||||
Con *con = w->data;
|
||||
|
||||
DLOG("Resetting urgency flag of con %p by timer\n", con);
|
||||
con->urgent = false;
|
||||
con_update_parents_urgency(con);
|
||||
workspace_update_urgent_flag(con_get_workspace(con));
|
||||
tree_render();
|
||||
if (con->urgent) {
|
||||
DLOG("Resetting urgency flag of con %p by timer\n", con);
|
||||
con->urgent = false;
|
||||
con_update_parents_urgency(con);
|
||||
workspace_update_urgent_flag(con_get_workspace(con));
|
||||
ipc_send_window_event("urgent", con);
|
||||
tree_render();
|
||||
}
|
||||
|
||||
ev_timer_stop(main_loop, con->urgency_timer);
|
||||
FREE(con->urgency_timer);
|
||||
@ -380,6 +383,7 @@ static void _workspace_show(Con *workspace) {
|
||||
* focus and thereby immediately destroy it */
|
||||
if (next->urgent && (int)(config.workspace_urgency_timer * 1000) > 0) {
|
||||
/* focus for now… */
|
||||
next->urgent = false;
|
||||
con_focus(next);
|
||||
|
||||
/* … but immediately reset urgency flags; they will be set to false by
|
||||
|
Reference in New Issue
Block a user