summaryrefslogtreecommitdiff
path: root/sway/tree/view.c
diff options
context:
space:
mode:
authorRyan Dwyer <[email protected]>2018-08-20 10:37:52 +1000
committerRyan Dwyer <[email protected]>2018-08-20 10:37:52 +1000
commite1955c5c08d4131fd5d3e2a91ec8af05c3117eca (patch)
tree34ada4f6dfb4362aa37e6221f01a0561cc43a569 /sway/tree/view.c
parenta49e4b13bf16bda8f1877272e04935329bb682c2 (diff)
Fix crash when adding output
Diffstat (limited to 'sway/tree/view.c')
-rw-r--r--sway/tree/view.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/sway/tree/view.c b/sway/tree/view.c
index 4abf1abb..2c0c1aa9 100644
--- a/sway/tree/view.c
+++ b/sway/tree/view.c
@@ -889,8 +889,10 @@ void view_add_mark(struct sway_view *view, char *mark) {
static void update_marks_texture(struct sway_view *view,
struct wlr_texture **texture, struct border_colors *class) {
- struct sway_output *output =
- view->swayc->outputs->items[view->swayc->outputs->length - 1];
+ struct sway_output *output = container_get_effective_output(view->swayc);
+ if (!output) {
+ return;
+ }
if (*texture) {
wlr_texture_destroy(*texture);
*texture = NULL;