diff options
| author | Michael <[email protected]> | 2017-02-04 15:40:03 -0500 |
|---|---|---|
| committer | Michael <[email protected]> | 2017-02-04 15:40:03 -0500 |
| commit | 4b2a6f8c6e36c1644e42e0aa62695dbfcfa3f615 (patch) | |
| tree | 8b98713593e82a0fd4ad6c05f407769062395103 | |
| parent | 5528c3d64a2edd4facb4671710e506053374ca73 (diff) | |
| download | shiftos_thereturn-4b2a6f8c6e36c1644e42e0aa62695dbfcfa3f615.tar.gz shiftos_thereturn-4b2a6f8c6e36c1644e42e0aa62695dbfcfa3f615.tar.bz2 shiftos_thereturn-4b2a6f8c6e36c1644e42e0aa62695dbfcfa3f615.zip | |
Add a better default cursor.
| -rw-r--r-- | ShiftOS.WinForms/Resources/DefaultMouse.bmp | bin | 3382 -> 3382 bytes | |||
| -rw-r--r-- | ShiftOS.WinForms/Tools/ControlManager.cs | 1 |
2 files changed, 1 insertions, 0 deletions
diff --git a/ShiftOS.WinForms/Resources/DefaultMouse.bmp b/ShiftOS.WinForms/Resources/DefaultMouse.bmp Binary files differindex 9ae6143..f13ea19 100644 --- a/ShiftOS.WinForms/Resources/DefaultMouse.bmp +++ b/ShiftOS.WinForms/Resources/DefaultMouse.bmp 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(); |
