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:
authorTon Roosendaal <ton@blender.org>2004-10-30 21:13:10 +0400
committerTon Roosendaal <ton@blender.org>2004-10-30 21:13:10 +0400
commit8aa1948c104b5a235908c3af7812dae6a668e311 (patch)
treeae8bd66bf365c7ccb59eca618ac927d12cc07b20 /source/blender/src/editscreen.c
parente1fb446ce741c462a763b26ffba5cf572fb5de06 (diff)
AFAIK... last issue with new Z-culling selection.
Since the new menu system draws in backbuffer, the selectionbuffer then needs a refresh after. Solved by nicely signalling stuff.
Diffstat (limited to 'source/blender/src/editscreen.c')
-rw-r--r--source/blender/src/editscreen.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/blender/src/editscreen.c b/source/blender/src/editscreen.c
index 8dfea4ff602..a7f2dc197de 100644
--- a/source/blender/src/editscreen.c
+++ b/source/blender/src/editscreen.c
@@ -598,6 +598,10 @@ void markdirty_all_back(void)
sa->head_swap &= ~WIN_BACK_OK;
}
}
+
+ /* if needed; backbuffer selection redraw */
+ if(G.vd) G.vd->flag |= V3D_NEEDBACKBUFDRAW;
+
}
void markdirty_win_back(short winid)