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:
authorCampbell Barton <ideasman42@gmail.com>2020-11-06 01:30:38 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-11-06 04:32:53 +0300
commit73ea68d0ca0bc4c629fef9e8352aa5e2c4fc4ee1 (patch)
tree45f8d4ed8d4b5f86d1458a14b5740fa10a471d2c /source/blender/editors/space_api
parentc99c02d3ba7fd0d8fe5ecd28f5415f131424e894 (diff)
Cleanup: unused variable
Diffstat (limited to 'source/blender/editors/space_api')
-rw-r--r--source/blender/editors/space_api/spacetypes.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/source/blender/editors/space_api/spacetypes.c b/source/blender/editors/space_api/spacetypes.c
index 40c83607f2c..10ce7b81954 100644
--- a/source/blender/editors/space_api/spacetypes.c
+++ b/source/blender/editors/space_api/spacetypes.c
@@ -271,7 +271,6 @@ void ED_region_draw_cb_exit(ARegionType *art, void *handle)
void ED_region_draw_cb_draw(const bContext *C, ARegion *region, int type)
{
RegionDrawCB *rdc;
- bool has_drawn_something = false;
for (rdc = region->type->drawcalls.first; rdc; rdc = rdc->next) {
if (rdc->type == type) {