aboutsummaryrefslogtreecommitdiff
path: root/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicWelcome.cs
diff options
context:
space:
mode:
authorJayXKanz666 <[email protected]>2017-07-06 01:59:15 +0200
committerJayXKanz666 <[email protected]>2017-07-06 01:59:15 +0200
commit29fdc4c04f031f88159d8d300329208d44ce7b9e (patch)
tree2585adf80aee4b90dcad3ade367b85141a4401e5 /TimeHACK.Main/OS/Win95/Win95Apps/WinClassicWelcome.cs
parentf51799e30bfe11d0243909d41758cdc33c736378 (diff)
downloadhistacom2-29fdc4c04f031f88159d8d300329208d44ce7b9e.tar.gz
histacom2-29fdc4c04f031f88159d8d300329208d44ce7b9e.tar.bz2
histacom2-29fdc4c04f031f88159d8d300329208d44ce7b9e.zip
Made the Welcome screen look MUCH better
Next time, Justin, do it right. ;)
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();
}
}
}