~bratsche/ubuntu/maverick/monodevelop/disable-appmenu

« back to all changes in this revision

Viewing changes to src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui/WorkbenchMemento.cs

  • Committer: Bazaar Package Importer
  • Author(s): Stefan Ebner
  • Date: 2009-03-17 17:55:55 UTC
  • mfrom: (1.1.13 sid)
  • Revision ID: james.westby@ubuntu.com-20090317175555-2w5qbmu0l5maq6fq
Tags: 1.9.3+dfsg-1ubuntu1
* FFe for Monodevelop 2 granted by motu-release team :)
* Merge from Debian Unstable , remaining Ubuntu changes:
  + debian/control:
    - Update for Gnome# 2.24

Show diffs side-by-side

added added

removed removed

Lines of Context:
43
43
                
44
44
                public Gdk.WindowState WindowState {
45
45
                        get {
46
 
                                return properties.Get ("windowState", (Gdk.WindowState)0);
 
46
                                return properties.Get ("windowState", Gdk.WindowState.Maximized);
47
47
                        }
48
48
                        set {
49
49
                                 properties.Set ("windowState", value);
52
52
                
53
53
                public Rectangle Bounds {
54
54
                        get {
55
 
                                return properties.Get ("bounds", new Rectangle(0, 0, 640, 480));
 
55
                                return properties.Get ("bounds", new Rectangle(50, 50, Gdk.Screen.Default.Width - 100, Gdk.Screen.Default.Height - 150));
56
56
                        }
57
57
                        set {
58
58
                                properties.Set ("bounds", value);