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
@ -97,9 +97,7 @@ class Client extends Signals.EventEmitter {
|
||||
|
||||
_onDeviceAdded(proxy, emitter, params) {
|
||||
let [path] = params;
|
||||
let device = new BoltDeviceProxy(Gio.DBus.system,
|
||||
BOLT_DBUS_NAME,
|
||||
path);
|
||||
let device = new BoltDeviceProxy(Gio.DBus.system, BOLT_DBUS_NAME, path);
|
||||
this.emit('device-added', device);
|
||||
}
|
||||
|
||||
@ -187,7 +185,7 @@ class AuthRobot extends Signals.EventEmitter {
|
||||
|
||||
this._enrolling = true;
|
||||
GLib.idle_add(GLib.PRIORITY_DEFAULT,
|
||||
this._enrollDevicesIdle.bind(this));
|
||||
this._enrollDevicesIdle.bind(this));
|
||||
}
|
||||
|
||||
async _enrollDevicesIdle() {
|
||||
@ -259,7 +257,7 @@ class Indicator extends SystemIndicator {
|
||||
_ensureSource() {
|
||||
if (!this._source) {
|
||||
this._source = new MessageTray.Source(_('Thunderbolt'),
|
||||
'thunderbolt-symbolic');
|
||||
'thunderbolt-symbolic');
|
||||
this._source.connect('destroy', () => (this._source = null));
|
||||
|
||||
Main.messageTray.add(this._source);
|
||||
|
Reference in New Issue
Block a user