summaryrefslogtreecommitdiffstats
path: root/sway/handlers.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/handlers.c')
-rw-r--r--sway/handlers.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/sway/handlers.c b/sway/handlers.c
index e4018811..23db5c15 100644
--- a/sway/handlers.c
+++ b/sway/handlers.c
@@ -86,6 +86,10 @@ swayc_t *container_under_pointer(void) {
86static bool handle_output_created(wlc_handle output) { 86static bool handle_output_created(wlc_handle output) {
87 swayc_t *op = new_output(output); 87 swayc_t *op = new_output(output);
88 88
89 if (!op) {
90 return false;
91 }
92
89 // Switch to workspace if we need to 93 // Switch to workspace if we need to
90 if (swayc_active_workspace() == NULL) { 94 if (swayc_active_workspace() == NULL) {
91 swayc_t *ws = op->children->items[0]; 95 swayc_t *ws = op->children->items[0];
@@ -104,6 +108,8 @@ static void handle_output_destroyed(wlc_handle output) {
104 } 108 }
105 if (i < list->length) { 109 if (i < list->length) {
106 destroy_output(list->items[i]); 110 destroy_output(list->items[i]);
111 } else {
112 return;
107 } 113 }
108 if (list->length > 0) { 114 if (list->length > 0) {
109 // switch to other outputs active workspace 115 // switch to other outputs active workspace