gnome-shell: update to 42.3.1

This commit is contained in:
oreo639 2022-07-10 00:59:28 -07:00 committed by Michal Vasilek
parent 2ff6b9abe8
commit 880470bf90
2 changed files with 4 additions and 41 deletions

View file

@ -1,37 +0,0 @@
From aca79c027483f86e85043f403321a8d8016ca007 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Florian=20M=C3=BCllner?= <fmuellner@gnome.org>
Date: Sun, 3 Jul 2022 16:44:39 +0200
Subject: [PATCH] keyboard: Fix updating suggestions visibility
Commit 237ba24dbeae added corresponding API to the keyboard actor,
but ended up calling it on the KeyboardManager.
Add the expected method to KeyboardManager that forwards the request
to the keyboard.
https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/5630
Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/2359>
(cherry picked from commit eff23a87c36a6a96c9abab09ab27a4bb35ab1b1f)
---
js/ui/keyboard.js | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/js/ui/keyboard.js b/js/ui/keyboard.js
index 9e5dbffbb1..e13652bdfe 100644
--- a/js/ui/keyboard.js
+++ b/js/ui/keyboard.js
@@ -1273,6 +1273,10 @@ var KeyboardManager = class KeyBoardManager {
this._keyboard.resetSuggestions();
}
+ setSuggestionsVisible(visible) {
+ this._keyboard?.setSuggestionsVisible(visible);
+ }
+
maybeHandleEvent(event) {
if (!this._keyboard)
return false;
--
GitLab

View file

@ -1,7 +1,7 @@
# Template file for 'gnome-shell' # Template file for 'gnome-shell'
pkgname=gnome-shell pkgname=gnome-shell
version=42.3 version=42.3.1
revision=2 revision=1
build_style=meson build_style=meson
build_helper=gir build_helper=gir
configure_args="-Dsystemd=false -Dtests=false" configure_args="-Dsystemd=false -Dtests=false"
@ -20,8 +20,8 @@ maintainer="Enno Boland <gottox@voidlinux.org>"
license="GPL-2.0-or-later" license="GPL-2.0-or-later"
homepage="https://wiki.gnome.org/Projects/GnomeShell" homepage="https://wiki.gnome.org/Projects/GnomeShell"
changelog="https://gitlab.gnome.org/GNOME/gnome-shell/-/raw/gnome-42/NEWS" changelog="https://gitlab.gnome.org/GNOME/gnome-shell/-/raw/gnome-42/NEWS"
distfiles="${GNOME_SITE}/gnome-shell/${version%.*}/gnome-shell-${version}.tar.xz" distfiles="${GNOME_SITE}/gnome-shell/${version%%.*}/gnome-shell-${version}.tar.xz"
checksum=964f520c28d7f412254298676f9cceed6adf81ff489ff1ded69c42987d4c1888 checksum=7dfab32dfac3cd64d4612918ca987cfb33238efa092798753c8845ff16935f7d
do_check() { do_check() {
mkdir /tmp/gnome-shell-xdg mkdir /tmp/gnome-shell-xdg