aboutsummaryrefslogtreecommitdiff
path: root/src/handlers/layer_shell.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/handlers/layer_shell.rs')
-rw-r--r--src/handlers/layer_shell.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/handlers/layer_shell.rs b/src/handlers/layer_shell.rs
index 39be2345..c426d321 100644
--- a/src/handlers/layer_shell.rs
+++ b/src/handlers/layer_shell.rs
@@ -49,7 +49,7 @@ impl WlrLayerShellHandler for State {
None
};
if let Some(output) = output {
- self.niri.queue_redraw(output);
+ self.niri.output_resized(output);
}
}
}
@@ -96,6 +96,6 @@ impl State {
}
drop(map);
- self.niri.queue_redraw(output);
+ self.niri.output_resized(output);
}
}