renameFolderMenu: Move to non-legacy coding style
Use proper indentation on multi-line methods calls and use single quotes on button label. https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/720
This commit is contained in:
parent
147cb53140
commit
8e3aac8ed7
@ -1735,10 +1735,10 @@ var RenameFolderMenu = class RenameFolderMenu extends PopupMenu.PopupMenu {
|
|||||||
// Focus the text entry on menu pop-up
|
// Focus the text entry on menu pop-up
|
||||||
this.focusActor = this._entry.clutter_text;
|
this.focusActor = this._entry.clutter_text;
|
||||||
|
|
||||||
this._entry.clutter_text.connect('notify::text',
|
this._entry.clutter_text.connect(
|
||||||
this._validate.bind(this));
|
'notify::text', this._validate.bind(this));
|
||||||
this._entry.clutter_text.connect('activate',
|
this._entry.clutter_text.connect(
|
||||||
this._updateFolderName.bind(this));
|
'activate', this._updateFolderName.bind(this));
|
||||||
|
|
||||||
// Rename button
|
// Rename button
|
||||||
this._button = new St.Button({
|
this._button = new St.Button({
|
||||||
@ -1746,7 +1746,7 @@ var RenameFolderMenu = class RenameFolderMenu extends PopupMenu.PopupMenu {
|
|||||||
reactive: true,
|
reactive: true,
|
||||||
button_mask: St.ButtonMask.ONE | St.ButtonMask.TWO,
|
button_mask: St.ButtonMask.ONE | St.ButtonMask.TWO,
|
||||||
can_focus: true,
|
can_focus: true,
|
||||||
label: _("Rename"),
|
label: _('Rename'),
|
||||||
});
|
});
|
||||||
box.add_child(this._button);
|
box.add_child(this._button);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user