[gnome-boxes] Maximize the main window by default



commit 119ae23dd219237b9dfafd0aa66006473e7e104a
Author: Zeeshan Ali (Khattak) <zeeshanak gnome org>
Date:   Wed Nov 2 02:15:44 2011 +0200

    Maximize the main window by default
    
    This is now the expected behaviour from every GNOME 3 app. We should
    still keep the UI defaults in gsettings like gnome-documents. We can
    steal the schema from documents.

 src/app.vala |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)
---
diff --git a/src/app.vala b/src/app.vala
index 96209b3..f578a74 100644
--- a/src/app.vala
+++ b/src/app.vala
@@ -130,6 +130,7 @@ private class Boxes.App: Boxes.UI {
     private void setup_ui () {
         window = new Gtk.Window ();
         window.set_default_size (680, 480);
+        window.maximize ();
         notebook = new Gtk.Notebook ();
         notebook.show_border = false;
         notebook.show_tabs = false;



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