aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.WinForms/Tools
diff options
context:
space:
mode:
authorMichael <[email protected]>2017-02-04 20:28:16 -0500
committerMichael <[email protected]>2017-02-04 20:28:16 -0500
commit865c072d431de49a53b3078d77ffc13b9c1b133d (patch)
tree18df1bcc53816bdd9f7573b1815094eec7d9d8f0 /ShiftOS.WinForms/Tools
parentdbae223e1ead0da4ba2aa6f38066048be9292274 (diff)
downloadshiftos_thereturn-865c072d431de49a53b3078d77ffc13b9c1b133d.tar.gz
shiftos_thereturn-865c072d431de49a53b3078d77ffc13b9c1b133d.tar.bz2
shiftos_thereturn-865c072d431de49a53b3078d77ffc13b9c1b133d.zip
#if STUPID set custom cursor #endif
Diffstat (limited to 'ShiftOS.WinForms/Tools')
-rw-r--r--ShiftOS.WinForms/Tools/ControlManager.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/ShiftOS.WinForms/Tools/ControlManager.cs b/ShiftOS.WinForms/Tools/ControlManager.cs
index 5778dd5..c5b073f 100644
--- a/ShiftOS.WinForms/Tools/ControlManager.cs
+++ b/ShiftOS.WinForms/Tools/ControlManager.cs
@@ -137,6 +137,7 @@ namespace ShiftOS.WinForms.Tools
public static void SetCursor(Control ctrl)
{
+#if STUPID
if (!(ctrl is WebBrowser))
{
var mouse = SkinEngine.GetImage("mouse");
@@ -151,6 +152,7 @@ namespace ShiftOS.WinForms.Tools
var cursor = new Cursor(handle);
ctrl.Cursor = cursor;
}
+#endif
}
public static void SetupControl(Control ctrl)