diff options
| author | AShifter <[email protected]> | 2017-03-27 16:48:32 -0600 |
|---|---|---|
| committer | GitHub <[email protected]> | 2017-03-27 16:48:32 -0600 |
| commit | 825fbabe6ef58175047b51b678ebaf44c7bae400 (patch) | |
| tree | 95c086939a0edcb3ba7888d3e38b20592b8cd9be /TimeHACK.Main/Windows95.cs | |
| parent | b96cf8f3f17a6289c6c9eb2ff8c14e7b1f5df797 (diff) | |
| parent | 24104ee15aef96daaa0d1453cd3fe2dee19ac5b3 (diff) | |
| download | histacom2-825fbabe6ef58175047b51b678ebaf44c7bae400.tar.gz histacom2-825fbabe6ef58175047b51b678ebaf44c7bae400.tar.bz2 histacom2-825fbabe6ef58175047b51b678ebaf44c7bae400.zip | |
Merge pull request #10 from lempamo/master
Menu BG Colors
Diffstat (limited to 'TimeHACK.Main/Windows95.cs')
| -rw-r--r-- | TimeHACK.Main/Windows95.cs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/TimeHACK.Main/Windows95.cs b/TimeHACK.Main/Windows95.cs index dc84193..79eb796 100644 --- a/TimeHACK.Main/Windows95.cs +++ b/TimeHACK.Main/Windows95.cs @@ -146,7 +146,8 @@ namespace TimeHACK { WinClassicIE4 ie = new WinClassicIE4(); 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)))); + Engine.Template.WinClassic app = wm.startWinClassic(ie, "Internet Explorer 4", null, true, true, new Font(TitleScreen.pfc.Families[0], 16F, FontStyle.Regular, GraphicsUnit.Point, ((byte)(0)))); + app.BringToFront(); startmenu.Hide(); } @@ -164,7 +165,8 @@ namespace TimeHACK { WinClassicIE4 ie = new WinClassicIE4(); 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)))); + Engine.Template.WinClassic app = wm.startWinClassic(ie, "Internet Explorer 4", null, true, true, new Font(TitleScreen.pfc.Families[0], 16F, FontStyle.Regular, GraphicsUnit.Point, ((byte)(0)))); + app.BringToFront(); startmenu.Hide(); } } |
