Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/intern
diff options
context:
space:
mode:
authorRobert Wenzlaff <rwenzlaff@soylent-green.com>2003-10-27 03:03:18 +0300
committerRobert Wenzlaff <rwenzlaff@soylent-green.com>2003-10-27 03:03:18 +0300
commit32a03fe4601d7449e7b8d1cbd452c1d0c4be3e2a (patch)
tree41e3e74b43dcd72a9a49fbdf6a173d72e929299b /intern
parente51a46473140f87d1f777f1ce5e6ad19c4e60aae (diff)
Changed Knife cursor in windows back to an arrow, since cross is "normal" cursor.
Diffstat (limited to 'intern')
-rw-r--r--intern/ghost/intern/GHOST_WindowWin32.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/ghost/intern/GHOST_WindowWin32.cpp b/intern/ghost/intern/GHOST_WindowWin32.cpp
index dd1af92fa36..1a5060df184 100644
--- a/intern/ghost/intern/GHOST_WindowWin32.cpp
+++ b/intern/ghost/intern/GHOST_WindowWin32.cpp
@@ -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;
}