Changed Knife cursor in windows back to an arrow, since cross is "normal" cursor.

This commit is contained in:
Robert Wenzlaff
2003-10-27 00:03:18 +00:00
parent e51a464731
commit 32a03fe460

View File

@@ -526,7 +526,7 @@ void GHOST_WindowWin32::loadCursor(bool visible, GHOST_TStandardCursor cursor) c
case GHOST_kStandardCursorTopRightCorner: id = IDC_SIZENESW; break;
case GHOST_kStandardCursorBottomRightCorner: id = IDC_SIZENWSE; break;
case GHOST_kStandardCursorBottomLeftCorner: id = IDC_SIZENESW; break;
case GHOST_kStandardCursorPencil: id = IDC_CROSS; break;
case GHOST_kStandardCursorPencil: id = IDC_ARROW; break;
default:
success = false;
}