Skip to content

Commit

Permalink
Merge branch 'hotfix/2.0.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
cwensley committed Nov 15, 2014
2 parents dca7d80 + 7a7dcd4 commit 006c7d6
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions Source/Eto.WinForms/Forms/FormHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,12 @@ public FormHandler()
};
}

protected override void Initialize()
{
base.Initialize();
Resizable = true;
}

public void Show()
{
Control.Show();
Expand Down
2 changes: 1 addition & 1 deletion Source/Eto.WinForms/Forms/WindowHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ public MenuBar Menu

protected virtual swf.FormBorderStyle DefaultWindowStyle
{
get { return swf.FormBorderStyle.Sizable; }
get { return swf.FormBorderStyle.Fixed3D; }
}

public virtual bool Resizable
Expand Down

0 comments on commit 006c7d6

Please sign in to comment.