[gnome-2048: 1/2] Change the minimum window size to 350x350



commit e7f17a00920356e8348db7a457e91c68f65a23db
Author: Sebastian Krzyszkowiak <dos dosowisko net>
Date:   Thu Sep 12 22:50:24 2019 +0000

    Change the minimum window size to 350x350
    
    This allows to run the game on smaller screens, such as phones.

 src/game-window.vala | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/src/game-window.vala b/src/game-window.vala
index 9b5b624..1788963 100644
--- a/src/game-window.vala
+++ b/src/game-window.vala
@@ -119,8 +119,8 @@ private class GameWindow : ApplicationWindow
     * * window state
     \*/
 
-    private const int WINDOW_MINIMUM_SIZE_HEIGHT = 600;
-    private const int WINDOW_MINIMUM_SIZE_WIDTH = 600;
+    private const int WINDOW_MINIMUM_SIZE_HEIGHT = 350;
+    private const int WINDOW_MINIMUM_SIZE_WIDTH = 350;
 
     private int _window_width;
     private int _window_height;


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