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
diff options
context:
space:
mode:
authorNicholas Bishop <nicholasbishop@gmail.com>2006-12-29 02:23:10 +0300
committerNicholas Bishop <nicholasbishop@gmail.com>2006-12-29 02:23:10 +0300
commitef0d41b956d2bde645c86434384a525a56c2608d (patch)
tree9f66805818250a2399b7985102fdf9bfe49ffdb3 /source/blender/src/drawview.c
parentc95eda7a8b95a76d1c2c70af8be7b84faf54a1c0 (diff)
Fix for bug #5539, brush circle cursor is slow.
Diffstat (limited to 'source/blender/src/drawview.c')
-rw-r--r--source/blender/src/drawview.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/source/blender/src/drawview.c b/source/blender/src/drawview.c
index 99643e11d6f..c2235c93da8 100644
--- a/source/blender/src/drawview.c
+++ b/source/blender/src/drawview.c
@@ -2787,9 +2787,7 @@ void drawview3dspace(ScrArea *sa, void *spacedata)
fdrawXORcirc(pd->origloc[0], pd->origloc[1], r1);
fdrawXORcirc(pd->origloc[0], pd->origloc[1], r2);
} else {
- short c[2];
- getmouseco_areawin(c);
- fdrawXORcirc((float)c[0], (float)c[1], sculptmode_brush()->size);
+ sculpt_paint_brush(1);
}
}
retopo_draw_paint_lines();