appDisplay: Avoid a warning
At least the last stable release of gjs has an issue with async handlers for custom (i.e. defined in JS) GObject signals. The handler still works, but evoking it prints the following warning: JS ERROR: Error: Could not guess unspecified GValue type We can avoid the warning by using the addAction() convenience method, which makes for a small nice cleanup anyway. https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/4531 Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/1938>
This commit is contained in:
parent
19fc6ef5dd
commit
26dc0fcd32
@ -3531,8 +3531,7 @@ var AppIconMenu = class AppIconMenu extends PopupMenu.PopupMenu {
|
||||
|
||||
if (Shell.AppSystem.get_default().lookup_app('org.gnome.Software.desktop')) {
|
||||
this._appendSeparator();
|
||||
let item = this._appendMenuItem(_("Show Details"));
|
||||
item.connect('activate', async () => {
|
||||
this.addAction(_('Show Details'), async () => {
|
||||
let id = this._source.app.get_id();
|
||||
let args = GLib.Variant.new('(ss)', [id, '']);
|
||||
const bus = await Gio.DBus.get(Gio.BusType.SESSION, null);
|
||||
|
Loading…
Reference in New Issue
Block a user