cleanup: Use consistent 4-space indent
This is another bit where we've made good progress, and just need a final push to complete the transition. Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/2866>
This commit is contained in:

committed by
Marge Bot

parent
071f92cfb6
commit
9a3913d4a0
@ -65,12 +65,14 @@ export function arrowIcon(side) {
|
||||
|
||||
export const PopupBaseMenuItem = GObject.registerClass({
|
||||
Properties: {
|
||||
'active': GObject.ParamSpec.boolean('active', 'active', 'active',
|
||||
GObject.ParamFlags.READWRITE,
|
||||
false),
|
||||
'sensitive': GObject.ParamSpec.boolean('sensitive', 'sensitive', 'sensitive',
|
||||
GObject.ParamFlags.READWRITE,
|
||||
true),
|
||||
'active': GObject.ParamSpec.boolean(
|
||||
'active', 'active', 'active',
|
||||
GObject.ParamFlags.READWRITE,
|
||||
false),
|
||||
'sensitive': GObject.ParamSpec.boolean(
|
||||
'sensitive', 'sensitive', 'sensitive',
|
||||
GObject.ParamFlags.READWRITE,
|
||||
true),
|
||||
},
|
||||
Signals: {
|
||||
'activate': {param_types: [Clutter.Event.$gtype]},
|
||||
@ -296,7 +298,7 @@ class PopupSeparatorMenuItem extends PopupBaseMenuItem {
|
||||
this.label_actor = this.label;
|
||||
|
||||
this.label.connect('notify::text',
|
||||
this._syncVisibility.bind(this));
|
||||
this._syncVisibility.bind(this));
|
||||
this._syncVisibility();
|
||||
|
||||
this._separator = new St.Widget({
|
||||
|
Reference in New Issue
Block a user