From 275479867d07f523ea51ef6dc0a4c73129bddb46 Mon Sep 17 00:00:00 2001 From: Norman Feske Date: Tue, 26 Oct 2021 13:59:21 +0200 Subject: [PATCH] window_layouter: handle decorator margins at start This patch adds a missing call of '_handle_decorator_margins' at construction time. Up to commit "report_rom: versioning and explicit notification" this problem was masked by an unconditional signal, which implicitely triggered the call. Issue #4274 Fixes #4306 --- repos/gems/src/app/window_layouter/main.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/repos/gems/src/app/window_layouter/main.cc b/repos/gems/src/app/window_layouter/main.cc index 6bab2251d8..97168a61c8 100644 --- a/repos/gems/src/app/window_layouter/main.cc +++ b/repos/gems/src/app/window_layouter/main.cc @@ -386,6 +386,7 @@ struct Window_layouter::Main : Operations, _focus_request.sigh(_focus_request_handler); _window_list.initial_import(); + _handle_decorator_margins(); _handle_focus_request(); /* attach update handler for config */