You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
966 B
29 lines
966 B
2 months ago
|
From cbe6fb86ce1e71c7360974a960db6bf79eb1ebde Mon Sep 17 00:00:00 2001
|
||
|
From: =?UTF-8?q?Florian=20M=C3=BCllner?= <fmuellner@gnome.org>
|
||
|
Date: Fri, 2 Dec 2022 22:49:41 +0100
|
||
|
Subject: [PATCH] place: Always center initial-setup/fedora-welcome
|
||
|
|
||
|
---
|
||
|
src/core/place.c | 5 +++++
|
||
|
1 file changed, 5 insertions(+)
|
||
|
|
||
|
diff --git a/src/core/place.c b/src/core/place.c
|
||
|
index 8a06ccb667..f34ae7f43d 100644
|
||
|
--- a/src/core/place.c
|
||
|
+++ b/src/core/place.c
|
||
|
@@ -377,6 +377,11 @@ window_place_centered (MetaWindow *window)
|
||
|
|
||
|
type = window->type;
|
||
|
|
||
|
+ 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)
|
||
|
+ return TRUE;
|
||
|
+
|
||
|
return (type == META_WINDOW_DIALOG ||
|
||
|
type == META_WINDOW_MODAL_DIALOG ||
|
||
|
type == META_WINDOW_SPLASHSCREEN ||
|
||
|
--
|
||
|
2.44.0.501.g19981daefd.dirty
|
||
|
|