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>2017-04-21 10:58:18 +0300
committerCampbell Barton <ideasman42@gmail.com>2017-04-21 10:58:18 +0300
commit3a75e84376e291cc415f3405ebd32eaec671e0ee (patch)
tree0cbef768a6e49b9670c3f71e99afe5b8ef99711c /source/blender/editors/curve
parent2b9738b7f814a7c5cae02d283d0958a2a0284cb5 (diff)
Draw Manager: edit-mode 3d text drawing
Draw cursor and selection, also support for fast-display.
Diffstat (limited to 'source/blender/editors/curve')
-rw-r--r--source/blender/editors/curve/editfont.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/editors/curve/editfont.c b/source/blender/editors/curve/editfont.c
index d86091aaa77..b149cfe3834 100644
--- a/source/blender/editors/curve/editfont.c
+++ b/source/blender/editors/curve/editfont.c
@@ -49,6 +49,7 @@
#include "BKE_context.h"
#include "BKE_curve.h"
+#include "BKE_curve_render.h"
#include "BKE_depsgraph.h"
#include "BKE_font.h"
#include "BKE_library.h"
@@ -273,6 +274,8 @@ static void text_update_edited(bContext *C, Object *obedit, int mode)
}
}
+ BKE_curve_batch_selection_dirty(cu);
+
WM_event_add_notifier(C, NC_GEOM | ND_DATA, obedit->data);
}