From 2c1393fa79fce2a08b6ed3e8a3efa1b5dbf158dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Guido=20G=C3=BCnther?= Date: Wed, 28 Mar 2018 10:23:49 +0200 Subject: [PATCH] shell: create background after panel so we know the panel's size --- src/phosh.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/phosh.c b/src/phosh.c index 04ae2408..45f725f7 100644 --- a/src/phosh.c +++ b/src/phosh.c @@ -462,8 +462,9 @@ phosh_shell_constructed (GObject *object) env_setup (); css_setup (self); - background_create (self); panel_create (self); + /* Create background after panel since it needs the panel's size */ + background_create (self); } -- GitLab