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 });