aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.WinForms
diff options
context:
space:
mode:
authorMichael <[email protected]>2017-02-04 15:40:03 -0500
committerMichael <[email protected]>2017-02-04 15:40:03 -0500
commit4b2a6f8c6e36c1644e42e0aa62695dbfcfa3f615 (patch)
tree8b98713593e82a0fd4ad6c05f407769062395103 /ShiftOS.WinForms
parent5528c3d64a2edd4facb4671710e506053374ca73 (diff)
downloadshiftos_thereturn-4b2a6f8c6e36c1644e42e0aa62695dbfcfa3f615.tar.gz
shiftos_thereturn-4b2a6f8c6e36c1644e42e0aa62695dbfcfa3f615.tar.bz2
shiftos_thereturn-4b2a6f8c6e36c1644e42e0aa62695dbfcfa3f615.zip
Add a better default cursor.
Diffstat (limited to 'ShiftOS.WinForms')
-rw-r--r--ShiftOS.WinForms/Resources/DefaultMouse.bmpbin3382 -> 3382 bytes
-rw-r--r--ShiftOS.WinForms/Tools/ControlManager.cs1
2 files changed, 1 insertions, 0 deletions
diff --git a/ShiftOS.WinForms/Resources/DefaultMouse.bmp b/ShiftOS.WinForms/Resources/DefaultMouse.bmp
index 9ae6143..f13ea19 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 1067c3f..52f7682 100644
--- a/ShiftOS.WinForms/Tools/ControlManager.cs
+++ b/ShiftOS.WinForms/Tools/ControlManager.cs
@@ -144,6 +144,7 @@ namespace ShiftOS.WinForms.Tools
mouse = Properties.Resources.DefaultMouse;
var mBmp = new Bitmap(mouse);
+ mBmp.MakeTransparent(Color.FromArgb(1, 0, 1));
var gfx = Graphics.FromImage(mBmp);
var handle = mBmp.GetHicon();