diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-07-24 14:31:38 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2018-07-24 14:31:38 -0400 |
commit | c80258c3b394781c42cd4f2c161c705b2558c485 (patch) | |
tree | a79d913b95ac3024f3015899abc587d93a00afe1 | |
parent | f4b882475eee7a81c206c7825616cc4656b2f60b (diff) |
Address @emersion's review comments
-rw-r--r-- | sway/tree/workspace.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sway/tree/workspace.c b/sway/tree/workspace.c index a93d9f44..b1082e4f 100644 --- a/sway/tree/workspace.c +++ b/sway/tree/workspace.c @@ -592,6 +592,8 @@ found: static void pw_handle_output_destroy(struct wl_listener *listener, void *data) { struct pid_workspace *pw = wl_container_of(listener, pw, output_destroy); pw->output = NULL; + wl_list_remove(&pw->output_destroy.link); + wl_list_init(&pw->output_destroy.link); } void workspace_record_pid(pid_t pid) { |