extensions-app: Remember window state

It's good practice to save and reload the window size and
maximization state, and easy enough to implement, so let's
do that.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3115>
This commit is contained in:
Florian Müllner 2024-01-13 23:34:00 +01:00
parent 2d380a3995
commit 41b94ccf11
5 changed files with 35 additions and 2 deletions

View file

@ -44,6 +44,7 @@ desktopdir = join_paths(datadir, 'applications')
icondir = join_paths(datadir, 'icons')
localedir = join_paths(datadir, 'locale')
metainfodir = join_paths(datadir, 'metainfo')
schemadir = join_paths(datadir, 'glib-2.0', 'schemas')
servicedir = join_paths(datadir, 'dbus-1', 'services')
gjs = find_program('gjs')
@ -64,6 +65,7 @@ if not meson.is_subproject()
subdir('po')
gnome.post_install(
glib_compile_schemas: true,
gtk_update_icon_cache: true
)