[aisleriot] Increase the default window size to 800x600



commit 9b4330b7289eda0c2b51816d44a4b2da4a5a3384
Author: William Jon McCann <william jon mccann gmail com>
Date:   Mon Mar 4 17:44:22 2013 -0500

    Increase the default window size to 800x600
    
    600x400 is just way too small for a game. And we should
    still be safe for small screen because we are only setting
    the natural size and not the minimum size.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=695087

 src/window.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/src/window.c b/src/window.c
index 44c3953..b1a269d 100644
--- a/src/window.c
+++ b/src/window.c
@@ -64,8 +64,8 @@
 
 #define AISLERIOT_WINDOW_GET_PRIVATE(window)(G_TYPE_INSTANCE_GET_PRIVATE ((window), AISLERIOT_TYPE_WINDOW, 
AisleriotWindowPrivate))
 
-#define MIN_WIDTH 600
-#define MIN_HEIGHT 400
+#define MIN_WIDTH 800
+#define MIN_HEIGHT 600
 
 #define MAIN_MENU_UI_PATH       "/MainMenu"
 #define RECENT_GAMES_MENU_PATH  MAIN_MENU_UI_PATH "/GameMenu/RecentMenu"


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