aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ShiftOS.WinForms/Applications/Downloader.cs1
-rw-r--r--ShiftOS.WinForms/Resources/DefaultMouse.bmpbin3382 -> 4150 bytes
-rw-r--r--ShiftOS.WinForms/Tools/ControlManager.cs3
3 files changed, 2 insertions, 2 deletions
diff --git a/ShiftOS.WinForms/Applications/Downloader.cs b/ShiftOS.WinForms/Applications/Downloader.cs
index 0c3076d..1968660 100644
--- a/ShiftOS.WinForms/Applications/Downloader.cs
+++ b/ShiftOS.WinForms/Applications/Downloader.cs
@@ -56,7 +56,6 @@ namespace ShiftOS.WinForms.Applications
public void OnSkinLoad()
{
- SetupUI();
}
public bool OnUnload()
diff --git a/ShiftOS.WinForms/Resources/DefaultMouse.bmp b/ShiftOS.WinForms/Resources/DefaultMouse.bmp
index f13ea19..43d0ba5 100644
--- a/ShiftOS.WinForms/Resources/DefaultMouse.bmp
+++ b/ShiftOS.WinForms/Resources/DefaultMouse.bmp
Binary files differ
diff --git a/ShiftOS.WinForms/Tools/ControlManager.cs b/ShiftOS.WinForms/Tools/ControlManager.cs
index 52f7682..5778dd5 100644
--- a/ShiftOS.WinForms/Tools/ControlManager.cs
+++ b/ShiftOS.WinForms/Tools/ControlManager.cs
@@ -148,7 +148,8 @@ namespace ShiftOS.WinForms.Tools
var gfx = Graphics.FromImage(mBmp);
var handle = mBmp.GetHicon();
- ctrl.Cursor = new Cursor(handle);
+ var cursor = new Cursor(handle);
+ ctrl.Cursor = cursor;
}
}