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:
authorJeroen Bakker <j.bakker@atmind.nl>2020-06-23 13:07:50 +0300
committerJeroen Bakker <j.bakker@atmind.nl>2020-06-23 13:07:50 +0300
commitef8aca65d8b8bbe66e6ebca144088ed2b685cbb0 (patch)
tree40b310db835a74996af79ca6b961f521002f4408 /source/blender/editors/screen
parentbbb2e0614fc3c017f4dbcdb8a26be612e8cb282e (diff)
Cleanup: renamed `do_draw_overlay` to `do_draw_paintcursor`
To make a better distinction with region overlay.
Diffstat (limited to 'source/blender/editors/screen')
-rw-r--r--source/blender/editors/screen/area.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/screen/area.c b/source/blender/editors/screen/area.c
index 63366044f88..54a9eced0da 100644
--- a/source/blender/editors/screen/area.c
+++ b/source/blender/editors/screen/area.c
@@ -646,7 +646,7 @@ void ED_region_tag_redraw(ARegion *region)
void ED_region_tag_redraw_cursor(ARegion *region)
{
if (region) {
- region->do_draw_overlay = RGN_DRAW;
+ region->do_draw_paintcursor = RGN_DRAW;
}
}