From 4671d4f870417e2e0f6b0b4fadfa31570c7752fb Mon Sep 17 00:00:00 2001 From: CoprDistGit Date: Fri, 2 Aug 2024 07:11:13 +0000 Subject: automatic import of gnome-shell --- ...layout-Initialize-regions-unconditionally.patch | 48 ++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 0001-layout-Initialize-regions-unconditionally.patch (limited to '0001-layout-Initialize-regions-unconditionally.patch') diff --git a/0001-layout-Initialize-regions-unconditionally.patch b/0001-layout-Initialize-regions-unconditionally.patch new file mode 100644 index 0000000..751be5d --- /dev/null +++ b/0001-layout-Initialize-regions-unconditionally.patch @@ -0,0 +1,48 @@ +From 5aeb97faee1aba8f6d4cc2c613691a7e2c880ccc Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Florian=20M=C3=BCllner?= +Date: Thu, 17 Nov 2022 15:21:42 +0100 +Subject: [PATCH] layout: Initialize regions unconditionally + +We currently initialize regions in all code paths except for the +greeter. But while there are no windows on the login screen, the +work area can still be used for positioning, for example for +notifications. + +Part-of: +--- + js/ui/layout.js | 15 +++++++-------- + 1 file changed, 7 insertions(+), 8 deletions(-) + +diff --git a/js/ui/layout.js b/js/ui/layout.js +index 70ece6cab..c6712459a 100644 +--- a/js/ui/layout.js ++++ b/js/ui/layout.js +@@ -649,18 +649,17 @@ var LayoutManager = GObject.registerClass({ + reactive: true }); + this.addChrome(this._coverPane); + ++ // Force an update of the regions before we scale the UI group to ++ // get the correct allocation for the struts. ++ // Do this even when we don't animate on restart, so that maximized ++ // windows restore to the right size. ++ this._updateRegions(); ++ + if (Meta.is_restart()) { +- // On restart, we don't do an animation. Force an update of the +- // regions immediately so that maximized windows restore to the +- // right size taking struts into account. +- this._updateRegions(); ++ // On restart, we don't do an animation. + } else if (Main.sessionMode.isGreeter) { + this.panelBox.translation_y = -this.panelBox.height; + } else { +- // We need to force an update of the regions now before we scale +- // the UI group to get the correct allocation for the struts. +- this._updateRegions(); +- + this.keyboardBox.hide(); + + let monitor = this.primaryMonitor; +-- +2.38.1 + -- cgit v1.2.3