gnome-shell/0001-endSessionDialog-Immediately-add-buttons-to-the-dial.patch

53 lines
1.8 KiB
Diff
Raw Normal View History

2019-10-09 01:53:25 +00:00
From bbbe73b2a0293165f9bc9cc63b647b35914a4a05 Mon Sep 17 00:00:00 2001
From: Hans de Goede <hdegoede@redhat.com>
Date: Wed, 15 Aug 2018 14:26:19 +0200
Subject: [PATCH 1/2] endSessionDialog: Immediately add buttons to the dialog
Immediately add buttons to the dialog instead of first building an
array of button-info structs.
This is a preparation patch for adding support changing the "Reboot"
button into a "Boot Options" button when Alt is pressed.
---
2019-10-09 01:53:25 +00:00
js/ui/endSessionDialog.js | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/js/ui/endSessionDialog.js b/js/ui/endSessionDialog.js
2019-10-09 01:53:25 +00:00
index e1c6517f4..4ce797527 100644
--- a/js/ui/endSessionDialog.js
+++ b/js/ui/endSessionDialog.js
2019-10-09 01:53:25 +00:00
@@ -441,15 +441,17 @@ class EndSessionDialog extends ModalDialog.ModalDialog {
2019-02-07 01:50:26 +00:00
}
_updateButtons() {
- let dialogContent = DialogContent[this._type];
- let buttons = [{ action: this.cancel.bind(this),
+ this.clearButtons();
+
+ this.addButton({ action: this.cancel.bind(this),
label: _("Cancel"),
- key: Clutter.Escape }];
+ key: Clutter.Escape });
+ let dialogContent = DialogContent[this._type];
for (let i = 0; i < dialogContent.confirmButtons.length; i++) {
let signal = dialogContent.confirmButtons[i].signal;
let label = dialogContent.confirmButtons[i].label;
2019-10-09 01:53:25 +00:00
- buttons.push({
2019-08-09 22:56:47 +00:00
+ let button = this.addButton({
2019-10-09 01:53:25 +00:00
action: () => {
this.close(true);
let signalId = this.connect('closed', () => {
@@ -460,8 +462,6 @@ class EndSessionDialog extends ModalDialog.ModalDialog {
label: label,
});
}
-
- this.setButtons(buttons);
2019-02-07 01:50:26 +00:00
}
close(skipSignal) {
--
2019-10-09 01:53:25 +00:00
2.23.0