[gnome-characters/wip/cdavis/set-default-size] window: Set a bigger default size




commit f83d09f5cb8ba660b914a8ec046fa039dce445c9
Author: Christopher Davis <brainblasted disroot org>
Date:   Fri Feb 12 21:56:15 2021 -0800

    window: Set a bigger default size
    
    After the recent UI changes the previous default size was
    too small. Increase it here.

 src/window.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/src/window.js b/src/window.js
index de728e4..6f6d574 100644
--- a/src/window.js
+++ b/src/window.js
@@ -52,8 +52,8 @@ var MainWindow = GObject.registerClass({
 }, class MainWindow extends Handy.ApplicationWindow {
     _init(params) {
         params = Params.fill(params, { title: GLib.get_application_name(),
-                                       default_width: 640,
-                                       default_height: 480 });
+                                       default_width: 800,
+                                       default_height: 500 });
         super._init(params);
 
         this._searchActive = false;


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]