[gnome] Update extensions

This commit is contained in:
2026-04-09 09:51:44 -04:00
parent dadc78f2f4
commit 505c67d292
61 changed files with 1729 additions and 365 deletions

View File

@ -40,8 +40,13 @@ export const DBusProxy = GObject.registerClass({
(_proxy, ...args) => this._onSignal(...args)));
}
this._signalIds.push(this.connect('notify::g-name-owner', () =>
this._onNameOwnerChanged()));
this._signalIds.push(this.connect('notify::g-name-owner', () => {
if (!this.gNameOwner) {
this._cancellable.cancel();
this._cancellable = new Gio.Cancellable();
}
this._onNameOwnerChanged();
}));
}
async initAsync(cancellable) {