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-11-06 03:01:51 +0300
committerRobert Wenzlaff <rwenzlaff@soylent-green.com>2003-11-06 03:01:51 +0300
commit8dfd33c4fbf6763dbe5a6576ac0a78d1cfd5bb9d (patch)
tree5923be849e5d99da9a1fb7ead4e42eecfa4c3d79 /intern
parentaeb8a0f1ae51336f5794458604016de20764f500 (diff)
Improved Knife line drawing, and added Knife cursor.
Diffstat (limited to 'intern')
-rwxr-xr-xintern/ghost/intern/GHOST_WindowX11.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/ghost/intern/GHOST_WindowX11.cpp b/intern/ghost/intern/GHOST_WindowX11.cpp
index e22c3f135a3..7b6fa2aa42a 100755
--- a/intern/ghost/intern/GHOST_WindowX11.cpp
+++ b/intern/ghost/intern/GHOST_WindowX11.cpp
@@ -690,7 +690,7 @@ setWindowCustomCursorShape(
if(XAllocNamedColor(m_display, DefaultColormap(m_display, DefaultScreen(m_display)),
"White", &fg, &fg) == 0) return GHOST_kFailure;
if(XAllocNamedColor(m_display, DefaultColormap(m_display, DefaultScreen(m_display)),
- "Red", &bg, &bg) == 0) return GHOST_kFailure;
+ "Black", &bg, &bg) == 0) return GHOST_kFailure;
if (m_custom_cursor) {
XFreeCursor(m_display, m_custom_cursor);