mirror of
https://github.com/ClassiCube/ClassiCube.git
synced 2025-09-17 11:35:08 -04:00
I mixed up visible and hidden.
This commit is contained in:
parent
b4c64425f5
commit
1f8d4574d4
@ -4,7 +4,7 @@
|
|||||||
<ProjectGuid>{BEB1C785-5CAD-48FF-A886-876BF0A318D4}</ProjectGuid>
|
<ProjectGuid>{BEB1C785-5CAD-48FF-A886-876BF0A318D4}</ProjectGuid>
|
||||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>WinExe</OutputType>
|
||||||
<RootNamespace>ClassicalSharp</RootNamespace>
|
<RootNamespace>ClassicalSharp</RootNamespace>
|
||||||
<AssemblyName>ClassicalSharp</AssemblyName>
|
<AssemblyName>ClassicalSharp</AssemblyName>
|
||||||
<TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
|
<TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
|
||||||
|
@ -1038,16 +1038,19 @@ namespace OpenTK.Platform.MacOS
|
|||||||
}
|
}
|
||||||
|
|
||||||
// TODO: Proper hide and show cursor
|
// TODO: Proper hide and show cursor
|
||||||
|
// TODO: appears to be broken on OSX, thanks mono.
|
||||||
bool hidden = false;
|
bool hidden = false;
|
||||||
public bool CursorVisible {
|
public bool CursorVisible {
|
||||||
get { return hidden; }
|
get { return true; }
|
||||||
|
set { }
|
||||||
|
/*get { return hidden; }
|
||||||
set {
|
set {
|
||||||
hidden = value;
|
hidden = value;
|
||||||
if( hidden )
|
if( hidden )
|
||||||
System.Windows.Forms.Cursor.Hide();
|
System.Windows.Forms.Cursor.Hide();
|
||||||
else
|
else
|
||||||
System.Windows.Forms.Cursor.Show();
|
System.Windows.Forms.Cursor.Show();
|
||||||
}
|
}*/
|
||||||
}
|
}
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
Loading…
x
Reference in New Issue
Block a user