Skip to content
Snippets Groups Projects
Commit 295fd9e0 authored by Rocky Automation's avatar Rocky Automation :tv:
Browse files

import gnome-shell-extensions-47.3-2.el10

parent 4c90bc6b
No related branches found
No related tags found
No related merge requests found
dd774a0291584917abde88bbc4eccf9244178e3c269ce0618d0495177c12652d SOURCES/gnome-shell-extensions-47.2.tar.xz
1a9142a4e85d7a2b7dc5bad37e34df9eebb38e8496f4938be2d7b2b35883d139 SOURCES/gnome-shell-extensions-47.3.tar.xz
From 01f7df1e8a2de1340589dbcd47f98ff6a1744035 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Florian=20M=C3=BCllner?= <fmuellner@gnome.org>
Date: Wed, 15 Jan 2025 12:36:51 +0100
Subject: [PATCH] window-list: Use correct params when re-tracking chrome
Since commit 981e8e42, we temporarily untrack the window-list actor
while in the overview.
However as we don't pass pass the chrome parameters when re-tracking
chrome, the window-list no longer contributes to struts or tracks
fullscreen changes, whoops.
Make sure to pass the original parameters when re-tracking chrome
to restore the expected behavior.
Fixes: 981e8e42 ("window-list: Untrack chrome while in overview")
Closes: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/issues/550
Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/379>
---
extensions/window-list/extension.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/extensions/window-list/extension.js b/extensions/window-list/extension.js
index d20e5270..a768d735 100644
--- a/extensions/window-list/extension.js
+++ b/extensions/window-list/extension.js
@@ -1029,7 +1029,7 @@ class WindowList extends St.Widget {
this._updateKeyboardAnchor();
},
'hidden', () => {
- Main.layoutManager.trackChrome(this);
+ Main.layoutManager.trackChrome(this, chromeOptions);
this.visible = !this._monitor.inFullscreen;
this._updateKeyboardAnchor();
}, this);
--
2.47.1
......@@ -22,7 +22,7 @@
%endif
Name: gnome-shell-extensions
Version: 47.2
Version: 47.3
Release: %autorelease
Summary: Modify and extend GNOME Shell functionality and behavior
......@@ -30,6 +30,8 @@ License: GPL-2.0-or-later
URL: http://wiki.gnome.org/Projects/GnomeShell/Extensions
Source0: http://ftp.gnome.org/pub/GNOME/sources/%{name}/%{major_version}/%{name}-%{tarball_version}.tar.xz
Patch: 0001-window-list-Use-correct-params-when-re-tracking-chro.patch
BuildRequires: meson
BuildRequires: git
BuildRequires: gettext >= 0.19.6
......@@ -430,6 +432,12 @@ rm -rf %{buildroot}/%{_datadir}/xsessions
%changelog
## START: Generated by rpmautospec
* Wed Jan 22 2025 Florian Müllner <fmuellner@redhat.com> - 47.3-2
- Fix regression in chrome tracking
* Wed Jan 22 2025 Florian Müllner <fmuellner@redhat.com> - 47.3-1
- Update to 47.3
* Fri Jan 03 2025 Florian Müllner <fmuellner@redhat.com> - 47.2-2
- Fix GNOME 47 port of custom-menu extension
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment