aboutsummaryrefslogtreecommitdiff
path: root/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicWelcome.cs
diff options
context:
space:
mode:
authorJason <[email protected]>2017-07-06 02:02:05 +0200
committerGitHub <[email protected]>2017-07-06 02:02:05 +0200
commit0304556be7047911a98b1d009fe967d1582caa94 (patch)
tree2585adf80aee4b90dcad3ade367b85141a4401e5 /TimeHACK.Main/OS/Win95/Win95Apps/WinClassicWelcome.cs
parent5ff581c5a68b4ed2beebde103b2b358d14c30cca (diff)
parent29fdc4c04f031f88159d8d300329208d44ce7b9e (diff)
downloadhistacom2-0304556be7047911a98b1d009fe967d1582caa94.tar.gz
histacom2-0304556be7047911a98b1d009fe967d1582caa94.tar.bz2
histacom2-0304556be7047911a98b1d009fe967d1582caa94.zip
Merge pull request #117 from jayxkanz666/master
Made the welcome screen look like the original
Diffstat (limited to 'TimeHACK.Main/OS/Win95/Win95Apps/WinClassicWelcome.cs')
-rw-r--r--TimeHACK.Main/OS/Win95/Win95Apps/WinClassicWelcome.cs6
1 files changed, 5 insertions, 1 deletions
diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicWelcome.cs b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicWelcome.cs
index 52a8938..b0761b1 100644
--- a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicWelcome.cs
+++ b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicWelcome.cs
@@ -15,11 +15,15 @@ namespace TimeHACK.OS.Win95.Win95Apps
public WinClassicWelcome()
{
InitializeComponent();
+
+ btnTour.Paint += (sender, args) => Engine.Paintbrush.PaintClassicBorders(sender, args, 2);
+ btnOnline.Paint += (sender, args) => Engine.Paintbrush.PaintClassicBorders(sender, args, 2);
+ btnClose.Paint += (sender, args) => Engine.Paintbrush.PaintClassicBorders(sender, args, 2);
}
private void btnClose_Click(object sender, EventArgs e)
{
- this.ParentForm.Close();
+ ParentForm.Close();
}
}
}