diff options
| author | AShifter <[email protected]> | 2017-03-27 14:03:48 -0600 |
|---|---|---|
| committer | GitHub <[email protected]> | 2017-03-27 14:03:48 -0600 |
| commit | b96cf8f3f17a6289c6c9eb2ff8c14e7b1f5df797 (patch) | |
| tree | b58fe5631bd861df849a3c57cfa2e032261bf4dc /TimeHACK.Main/Windows95.cs | |
| parent | 5819bf69c300dfaefa427d701b3bef4a7397e0c9 (diff) | |
| parent | b880da82cd6af92ca704c4c1cd96c8d1fa64ad59 (diff) | |
| download | histacom2-b96cf8f3f17a6289c6c9eb2ff8c14e7b1f5df797.tar.gz histacom2-b96cf8f3f17a6289c6c9eb2ff8c14e7b1f5df797.tar.bz2 histacom2-b96cf8f3f17a6289c6c9eb2ff8c14e7b1f5df797.zip | |
Merge pull request #9 from lempamo/master
things 2: electric boogaloo
love it:tm:
Diffstat (limited to 'TimeHACK.Main/Windows95.cs')
| -rw-r--r-- | TimeHACK.Main/Windows95.cs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/TimeHACK.Main/Windows95.cs b/TimeHACK.Main/Windows95.cs index bfae46b..dc84193 100644 --- a/TimeHACK.Main/Windows95.cs +++ b/TimeHACK.Main/Windows95.cs @@ -124,14 +124,14 @@ namespace TimeHACK { WindowManager wm = new WindowManager(); TestApp test = new TestApp(); - wm.startWinClassic(test, "TestApp", null, true, true); + wm.startWinClassic(test, "TestApp", null, true, true, new Font(TitleScreen.pfc.Families[0], 16F, FontStyle.Regular, GraphicsUnit.Point, ((byte)(0)))); } private void downloaderTestToolStripMenuItem_Click(object sender, EventArgs e) { WinClassicDownloader opendownload = new WinClassicDownloader(); WindowManager wm = new WindowManager(); - wm.startWinClassic(opendownload, "Downloader", null, false, true); + wm.startWinClassic(opendownload, "Downloader", null, false, true, new Font(TitleScreen.pfc.Families[0], 16F, FontStyle.Regular, GraphicsUnit.Point, ((byte)(0)))); opendownload.appName.Text = "Downloading: Survive The Day"; } @@ -139,14 +139,14 @@ namespace TimeHACK { WinClassicInstaller openinstaller = new WinClassicInstaller(); WindowManager wm = new WindowManager(); - wm.startWinClassic(openinstaller, "Installer", null, false, true); + wm.startWinClassic(openinstaller, "Installer", null, false, true, new Font(TitleScreen.pfc.Families[0], 16F, FontStyle.Regular, GraphicsUnit.Point, ((byte)(0)))); } private void InternetExplorerToolStripMenuItem_Click(object sender, EventArgs e) { WinClassicIE4 ie = new WinClassicIE4(); - ie.Show(); - ie.BringToFront(); + WindowManager wm = new WindowManager(); + wm.startWinClassic(ie, "Internet Explorer 4", null, true, true, new Font(TitleScreen.pfc.Families[0], 16F, FontStyle.Regular, GraphicsUnit.Point, ((byte)(0)))); startmenu.Hide(); } @@ -164,7 +164,7 @@ namespace TimeHACK { WinClassicIE4 ie = new WinClassicIE4(); WindowManager wm = new WindowManager(); - wm.startWinClassic(ie, "Internet Explorer 4", null, true, true); + wm.startWinClassic(ie, "Internet Explorer 4", null, true, true, new Font(TitleScreen.pfc.Families[0], 16F, FontStyle.Regular, GraphicsUnit.Point, ((byte)(0)))); startmenu.Hide(); } } |
