extensionPrefs: Schedule updates check on activate

While gnome-shell will now check for extension updates, the checks
are performed infrequently. Opening the Extensions app implies that
the user's current focus is on extensions, so it is an appropriate
time to schedule another updates check.

https://gitlab.gnome.org/GNOME/gnome-shell/issues/1968
This commit is contained in:
Florian Müllner 2020-01-27 00:47:18 +01:00
parent 529829a561
commit 9e00e8a0fb

View File

@ -38,6 +38,7 @@ class Application extends Gtk.Application {
}
vfunc_activate() {
this._shellProxy.CheckForUpdatesRemote();
this._window.present();
}