mirror of
https://github.com/edu4rdshl/gnome-shell.git
synced 2026-07-17 23:24:51 +00:00
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:
parent
35fa188ad8
commit
4331745ac7
1 changed files with 2 additions and 1 deletions
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue