From 62abf3edc72e4ac9d5381dc838b219ba6f0426e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Tue, 15 Jan 2019 20:12:04 +0100 Subject: [PATCH] audioDeviceSelection: Only include settings button when allowed https://gitlab.gnome.org/GNOME/gnome-shell/issues/909 --- js/ui/audioDeviceSelection.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/js/ui/audioDeviceSelection.js b/js/ui/audioDeviceSelection.js index 3f4b9bcc7..b44a3e7ac 100644 --- a/js/ui/audioDeviceSelection.js +++ b/js/ui/audioDeviceSelection.js @@ -56,8 +56,9 @@ var AudioDeviceSelectionDialog = new Lang.Class({ this._selectionBox = new St.BoxLayout({ style_class: 'audio-selection-box' }); this.contentLayout.add(this._selectionBox, { expand: true }); - this.addButton({ action: this._openSettings.bind(this), - label: _("Sound Settings") }); + if (Main.sessionMode.allowSettings) + this.addButton({ action: this._openSettings.bind(this), + label: _("Sound Settings") }); this.addButton({ action: this.close.bind(this), label: _("Cancel"), key: Clutter.Escape });