Tweak centering patch some more

- the initial-setup ID missed an "i"
 - fedora-welcome will have to change its ID when moving
   to GTK4, prepare for that
This commit is contained in:
Florian Müllner 2023-03-10 01:36:17 +01:00
parent 63c751606b
commit 275ef5ebf0
2 changed files with 12 additions and 7 deletions

View File

@ -1,21 +1,22 @@
From 00e208334c42ce0e0de1dc392ca4663dbc818c09 Mon Sep 17 00:00:00 2001 From 692546a9701a7b363e6190af441a95385c244907 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Florian=20M=C3=BCllner?= <fmuellner@gnome.org> From: =?UTF-8?q?Florian=20M=C3=BCllner?= <fmuellner@gnome.org>
Date: Fri, 2 Dec 2022 22:49:41 +0100 Date: Fri, 2 Dec 2022 22:49:41 +0100
Subject: [PATCH] place: Always center initial-setup/fedora-welcome Subject: [PATCH] place: Always center initial-setup/fedora-welcome
--- ---
src/core/place.c | 4 ++++ src/core/place.c | 5 +++++
1 file changed, 4 insertions(+) 1 file changed, 5 insertions(+)
diff --git a/src/core/place.c b/src/core/place.c diff --git a/src/core/place.c b/src/core/place.c
index f9877dfc7..58d3285bc 100644 index f9877dfc7..a69a3ebd1 100644
--- a/src/core/place.c --- a/src/core/place.c
+++ b/src/core/place.c +++ b/src/core/place.c
@@ -321,6 +321,10 @@ window_place_centered (MetaWindow *window) @@ -321,6 +321,11 @@ window_place_centered (MetaWindow *window)
type = window->type; type = window->type;
+ if (g_strcmp0 (meta_window_get_wm_class (window), "org.gnome.InitalSetup") == 0 || + if (g_strcmp0 (meta_window_get_wm_class (window), "org.gnome.InitialSetup") == 0 ||
+ g_strcmp0 (meta_window_get_wm_class (window), "org.fedoraproject.welcome-screen") == 0 ||
+ g_strcmp0 (meta_window_get_wm_class (window), "fedora-welcome") == 0) + g_strcmp0 (meta_window_get_wm_class (window), "fedora-welcome") == 0)
+ return TRUE; + return TRUE;
+ +

View File

@ -13,7 +13,7 @@
Name: mutter Name: mutter
Version: 44~rc Version: 44~rc
Release: 3%{?dist} Release: 4%{?dist}
Summary: Window and compositing manager based on Clutter Summary: Window and compositing manager based on Clutter
License: GPLv2+ License: GPLv2+
@ -179,6 +179,10 @@ the functionality of the installed %{name} package.
%{_datadir}/mutter-%{mutter_api_version}/tests %{_datadir}/mutter-%{mutter_api_version}/tests
%changelog %changelog
* Fri Mar 10 2023 Florian Müllner <fmuellner@redhat.com> - 44~rc-4
- Fix typo in centering patch
- Also check for possible future fedora-welcome ID
* Thu Mar 09 2023 Adam Williamson <awilliam@redhat.com> - 44~rc-3 * Thu Mar 09 2023 Adam Williamson <awilliam@redhat.com> - 44~rc-3
- From Florian: adjust centering patch to not crash on null values - From Florian: adjust centering patch to not crash on null values
- Backport MR #2906 to fix g-i-s startup problems (#2176700) - Backport MR #2906 to fix g-i-s startup problems (#2176700)