From ac202cbdd376231a5a03b861e3dcb57cfce85150 Mon Sep 17 00:00:00 2001 From: "Jasper St. Pierre" Date: Fri, 21 Dec 2012 11:04:57 -0500 Subject: [PATCH] keyring: Don't use setButtons https://bugzilla.gnome.org/show_bug.cgi?id=690594 --- js/ui/components/keyring.js | 18 +++++++----------- 1 file changed, 7 insertions(+), 11 deletions(-) diff --git a/js/ui/components/keyring.js b/js/ui/components/keyring.js index ef53c0b42..74c9c382c 100644 --- a/js/ui/components/keyring.js +++ b/js/ui/components/keyring.js @@ -60,18 +60,14 @@ const KeyringDialog = new Lang.Class({ this._controlTable = null; - let buttons = [{ label: '', - action: Lang.bind(this, this._onCancelButton), - key: Clutter.Escape - }, - { label: '', - action: Lang.bind(this, this._onContinueButton), - default: true - }] - this.setButtons(buttons); - this._cancelButton = buttons[0].button; - this._continueButton = buttons[1].button; + this._cancelButton = this.addButton({ label: '', + action: Lang.bind(this, this._onCancelButton), + key: Clutter.Escape }); + this._continueButton = this.addButton({ label: '', + action: Lang.bind(this, this._onContinueButton), + default: true }, + { expand: true, x_fill: false, x_align: St.Align.END }); this.prompt.bind_property('cancel-label', this._cancelButton, 'label', GObject.BindingFlags.SYNC_CREATE); this.prompt.bind_property('continue-label', this._continueButton, 'label', GObject.BindingFlags.SYNC_CREATE);