From 3bc06bb78fbedeaade3fc509af0a2e8fb3031167 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Fri, 11 Oct 2024 12:45:54 +0200 Subject: [PATCH] window-list: Set title and icon on prefs page Like the workspace prefs page, the existing window list prefs should set title and icon for the view switcher. Part-of: --- extensions/window-list/prefs.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/extensions/window-list/prefs.js b/extensions/window-list/prefs.js index 0633d590..a97de997 100644 --- a/extensions/window-list/prefs.js +++ b/extensions/window-list/prefs.js @@ -18,7 +18,10 @@ class WindowListPrefsWidget extends Adw.PreferencesPage { } constructor(settings) { - super(); + super({ + title: _('Window List'), + icon_name: 'focus-windows-symbolic', + }); this._actionGroup = new Gio.SimpleActionGroup(); this.insert_action_group('window-list', this._actionGroup);