From b6b31439fc7261763bf9b34cb9f541776226eaa4 Mon Sep 17 00:00:00 2001 From: beedee Date: Wed, 11 Jul 2007 12:59:13 +0000 Subject: [PATCH] Fix to stop the user being able to resize the Form git-svn-id: svn://svn.ijw.co.nz/svn/OpenRa@1172 993157c7-ee19-0410-b2c4-bb4e9862e678 --- OpenRa.Game/MainWindow.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/OpenRa.Game/MainWindow.cs b/OpenRa.Game/MainWindow.cs index 7e0e68c537..23fac2e2a2 100644 --- a/OpenRa.Game/MainWindow.cs +++ b/OpenRa.Game/MainWindow.cs @@ -21,7 +21,7 @@ namespace OpenRa.Game Package TileMix; string TileSuffix; - const string mapName = "scg11eb.ini"; + const string mapName = "scm12ea.ini"; Dictionary> tileMapping = new Dictionary>(); @@ -106,7 +106,8 @@ namespace OpenRa.Game public MainWindow() { - renderer = new Renderer(this, new Size(1280,800), false); + FormBorderStyle = FormBorderStyle.None; + renderer = new Renderer(this, new Size(1280, 800), false); Visible = true; IniFile mapFile = new IniFile(File.OpenRead("../../../" + mapName));