浏览代码

Merge pull request #1114 from rgngl/linuxCursorFix

PlatformLinux: Fix cursor visibility
Sean Paul Taylor 12 年之前
父节点
当前提交
d5f050b3af
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      gameplay/src/PlatformLinux.cpp

+ 1 - 1
gameplay/src/PlatformLinux.cpp

@@ -1501,7 +1501,7 @@ namespace gameplay
     {
         if (visible != __cursorVisible)
         {
-            if (visible)
+            if (!visible)
             {
                 Cursor invisibleCursor;
                 Pixmap bitmapNoData;