From a81f18592aa59522fefffa5cea488588b4a6b722 Mon Sep 17 00:00:00 2001 From: Bastien Nocera Date: Mon, 23 Jan 2017 08:32:05 +0100 Subject: [PATCH] portalHelper: Set a minimum window size Even though the window is maximised when created, the window is still resizable. This avoids making the window smaller than usable. If the screen is smaller than the minimum window size, the maximise should make it fullscreen and non-resizable. https://bugzilla.gnome.org/show_bug.cgi?id=735233 --- js/portalHelper/main.js | 1 + 1 file changed, 1 insertion(+) diff --git a/js/portalHelper/main.js b/js/portalHelper/main.js index 367659de3..c7d0433a9 100644 --- a/js/portalHelper/main.js +++ b/js/portalHelper/main.js @@ -81,6 +81,7 @@ const PortalWindow = new Lang.Class({ this.add(this._webView); this._webView.show(); + this.set_size_request(600, 450); this.maximize(); this.present_with_time(timestamp);