diff options
| author | lempamo <[email protected]> | 2017-08-18 19:18:17 -0400 |
|---|---|---|
| committer | lempamo <[email protected]> | 2017-08-18 19:18:17 -0400 |
| commit | 085ae85fd59c87df05e8f58009f04cdfc2bd7d8d (patch) | |
| tree | 0fa2fcd816b289461478c320725912778afe7018 /TimeHACK.Main/OS/Win95/Win95Apps/WinClassicIE3.cs | |
| parent | 3399ab978ca11faee44803d2b7c5f0f06855504a (diff) | |
| download | histacom2-085ae85fd59c87df05e8f58009f04cdfc2bd7d8d.tar.gz histacom2-085ae85fd59c87df05e8f58009f04cdfc2bd7d8d.tar.bz2 histacom2-085ae85fd59c87df05e8f58009f04cdfc2bd7d8d.zip | |
got rid of excess returntype things and did a thing to IE3
Diffstat (limited to 'TimeHACK.Main/OS/Win95/Win95Apps/WinClassicIE3.cs')
| -rw-r--r-- | TimeHACK.Main/OS/Win95/Win95Apps/WinClassicIE3.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicIE3.cs b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicIE3.cs index 1b1fbc8..b5367d1 100644 --- a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicIE3.cs +++ b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicIE3.cs @@ -28,6 +28,8 @@ namespace TimeHACK.OS.Win95.Win95Apps ForwardButton.MouseLeave += (s, e) => ForwardButton.BackgroundImage = Properties.Resources.IE3_Forward; StopButton.MouseEnter += (s, e) => StopButton.BackgroundImage = Properties.Resources.IE3_StopHover; StopButton.MouseLeave += (s, e) => StopButton.BackgroundImage = Properties.Resources.IE3_Stop; + RefreshButton.MouseEnter += (s, e) => RefreshButton.BackgroundImage = Properties.Resources.IE3_RefreshHover; + RefreshButton.MouseLeave += (s, e) => RefreshButton.BackgroundImage = Properties.Resources.IE3_Refresh; } public static async void GoToPage(string url) |
