portalHelper: Use default_size instead of set_size_request for size

GtkWidget.set_size_request() enforces a minimum size, while
GtkWidget.set_default_size() simply sets the default size.

The docs of set_size_request() say "In most cases,
gtk_window_set_default_size() is a better choice for toplevel windows", and
in our case it doesn't seem necessary to prohibit the window from having a
smaller size, so switch to using the default_width and default_height
properties.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3307>
(cherry picked from commit 5aa89fa9e6)
This commit is contained in:
Jonas Dreßler 2024-05-09 10:03:23 +02:00 committed by Florian Müllner
parent d3cc559d1b
commit e4344df1de

View file

@ -113,6 +113,8 @@ class PortalWindow extends Gtk.ApplicationWindow {
super._init({
application,
title: _('Hotspot Login'),
default_width: 600,
default_height: 450,
});
const headerbar = new Gtk.HeaderBar();
@ -153,7 +155,6 @@ class PortalWindow extends Gtk.ApplicationWindow {
this._syncUri();
this.set_child(this._webView);
this.set_size_request(600, 450);
this.maximize();
this.present_with_time(timestamp);