diff options
| author | lempamo <[email protected]> | 2017-07-31 23:14:24 -0400 |
|---|---|---|
| committer | lempamo <[email protected]> | 2017-07-31 23:14:24 -0400 |
| commit | b4277f918f43801cc656c7df2066b95a2bb103a7 (patch) | |
| tree | ae6f1d0cec63d5f7079ffd0c631867dfc8b22702 /TimeHACK.Main | |
| parent | 92fedc467a77c709b157a0ec1666bd902ad8d27e (diff) | |
| download | histacom2-b4277f918f43801cc656c7df2066b95a2bb103a7.tar.gz histacom2-b4277f918f43801cc656c7df2066b95a2bb103a7.tar.bz2 histacom2-b4277f918f43801cc656c7df2066b95a2bb103a7.zip | |
added fixed size windows
Diffstat (limited to 'TimeHACK.Main')
| -rw-r--r-- | TimeHACK.Main/OS/Win95/Win95.cs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/TimeHACK.Main/OS/Win95/Win95.cs b/TimeHACK.Main/OS/Win95/Win95.cs index 4d9d15c..ab92313 100644 --- a/TimeHACK.Main/OS/Win95/Win95.cs +++ b/TimeHACK.Main/OS/Win95/Win95.cs @@ -117,7 +117,7 @@ namespace TimeHACK.OS.Win95 CurrentSave.FTime95 = true; SaveSystem.SaveGame(); WinClassicWelcome welcome = new WinClassicWelcome(); - WinClassic app = wm.StartWin95(welcome, "Welcome", null, false, false); + WinClassic app = wm.StartWin95(welcome, "Welcome", null, false, false, resize: false); AddTaskBarItem(app, app.Tag.ToString(), "Welcome", null); nonimportantapps.Add(app); @@ -239,7 +239,7 @@ namespace TimeHACK.OS.Win95 private void downloaderTestToolStripMenuItem_Click(object sender, EventArgs e) { WinClassicDownloader opendownload = new WinClassicDownloader(); - WinClassic app = wm.StartWin95(opendownload, "Downloader", null, false, true); + WinClassic app = wm.StartWin95(opendownload, "Downloader", null, false, true, resize: false); opendownload.appName.Text = "Downloading: Survive The Day"; AddTaskBarItem(app, app.Tag.ToString(), "Downloader", null); @@ -251,7 +251,7 @@ namespace TimeHACK.OS.Win95 private void installerTestToolStripMenuItem_Click(object sender, EventArgs e) { Win95Installer openinstaller = new Win95Installer("Testing"); - WinClassic app = wm.StartWin95(openinstaller, "Installer", null, false, true); + WinClassic app = wm.StartWin95(openinstaller, "Installer", null, false, true, resize: false); AddTaskBarItem(app, app.Tag.ToString(), "Installer", null); @@ -456,7 +456,7 @@ namespace TimeHACK.OS.Win95 private void PropertiesToolStripMenuItem1_Click(object sender, EventArgs e) { WinClassicThemePanel theme = new WinClassicThemePanel(); - WinClassic app = wm.StartWin95(theme, "Themes", null, false, true, false); + WinClassic app = wm.StartWin95(theme, "Themes", null, false, true, false, resize: false); AddTaskBarItem(app, app.Tag.ToString(), "Themes", null); app.BringToFront(); @@ -489,7 +489,7 @@ namespace TimeHACK.OS.Win95 private void CalculatorToolStripMenuItem_Click(object sender, EventArgs e) { - WinClassic app = wm.StartWin95(new WinClassicCalculator(), "Calculator", Properties.Resources.WinClassicCalc, false, false); + WinClassic app = wm.StartWin95(new WinClassicCalculator(), "Calculator", Properties.Resources.WinClassicCalc, false, false, resize: false); AddTaskBarItem(app, app.Tag.ToString(), "Calculator", Properties.Resources.WinClassicCalc); nonimportantapps.Add(app); |
