mirror of
https://github.com/ClassiCube/ClassiCube.git
synced 2025-09-16 11:06:06 -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>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<OutputType>Exe</OutputType>
|
||||
<OutputType>WinExe</OutputType>
|
||||
<RootNamespace>ClassicalSharp</RootNamespace>
|
||||
<AssemblyName>ClassicalSharp</AssemblyName>
|
||||
<TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
|
||||
|
@ -1038,16 +1038,19 @@ namespace OpenTK.Platform.MacOS
|
||||
}
|
||||
|
||||
// TODO: Proper hide and show cursor
|
||||
// TODO: appears to be broken on OSX, thanks mono.
|
||||
bool hidden = false;
|
||||
public bool CursorVisible {
|
||||
get { return hidden; }
|
||||
get { return true; }
|
||||
set { }
|
||||
/*get { return hidden; }
|
||||
set {
|
||||
hidden = value;
|
||||
if( hidden )
|
||||
System.Windows.Forms.Cursor.Hide();
|
||||
else
|
||||
System.Windows.Forms.Cursor.Show();
|
||||
}
|
||||
}*/
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
Loading…
x
Reference in New Issue
Block a user