aboutsummaryrefslogtreecommitdiffstats
path: root/sway/tree/view.c
diff options
context:
space:
mode:
authorLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-07-16 08:13:58 +1000
committerLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-07-16 08:19:25 +1000
commitf86087d78f25575ddadaa4d3496b34e62b545d2e (patch)
tree07165fbc33946c7c334cc88ac0919e9ce6ba1595 /sway/tree/view.c
parentImplement urgency base functionality (diff)
downloadsway-f86087d78f25575ddadaa4d3496b34e62b545d2e.tar.gz
sway-f86087d78f25575ddadaa4d3496b34e62b545d2e.tar.zst
sway-f86087d78f25575ddadaa4d3496b34e62b545d2e.zip
Fix urgency IPC events
Diffstat (limited to 'sway/tree/view.c')
-rw-r--r--sway/tree/view.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/sway/tree/view.c b/sway/tree/view.c
index a2dbe92c..ae520b07 100644
--- a/sway/tree/view.c
+++ b/sway/tree/view.c
@@ -1070,8 +1070,10 @@ void view_set_urgent(struct sway_view *view, bool enable) {
1070 } 1070 }
1071 container_damage_whole(view->swayc); 1071 container_damage_whole(view->swayc);
1072 1072
1073 ipc_event_window(view->swayc, "urgent");
1074
1073 struct sway_container *ws = container_parent(view->swayc, C_WORKSPACE); 1075 struct sway_container *ws = container_parent(view->swayc, C_WORKSPACE);
1074 ipc_event_workspace(ws, NULL, "urgent"); 1076 ipc_event_workspace(NULL, ws, "urgent");
1075} 1077}
1076 1078
1077bool view_is_urgent(struct sway_view *view) { 1079bool view_is_urgent(struct sway_view *view) {