From de9af6edce1996283cca630222611eb16fc48d8e Mon Sep 17 00:00:00 2001 From: Vlad Zahorodnii Date: Fri, 22 Jan 2021 10:13:35 +0200 Subject: [PATCH] wayland: Arrange layer shell surfaces only on enabled outputs There should not be any layer shell surfaces on disabled outputs. --- layershellv1integration.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layershellv1integration.cpp b/layershellv1integration.cpp index 5527405b96..b434131d37 100644 --- a/layershellv1integration.cpp +++ b/layershellv1integration.cpp @@ -200,7 +200,7 @@ void LayerShellV1Integration::rearrange() { m_rearrangeTimer->stop(); - const QVector outputs = kwinApp()->platform()->outputs(); + const QVector outputs = kwinApp()->platform()->enabledOutputs(); for (AbstractOutput *output : outputs) { rearrangeOutput(output); }