From cb10fe1d773acd3c436aaed1505ff483b1154242 Mon Sep 17 00:00:00 2001 From: Norman Feske Date: Thu, 23 Nov 2023 17:05:04 +0100 Subject: [PATCH] decorator: add missing initial call _handle_mode This call is needed whenever the mode has settled before the decorator has started up. --- repos/gems/src/app/decorator/main.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/repos/gems/src/app/decorator/main.cc b/repos/gems/src/app/decorator/main.cc index 67983ffa2e..10b19c55f6 100644 --- a/repos/gems/src/app/decorator/main.cc +++ b/repos/gems/src/app/decorator/main.cc @@ -173,6 +173,7 @@ struct Decorator::Main : Window_factory_base }); /* import initial state */ + _handle_mode(); _handle_pointer_update(); _handle_window_layout_update(); }