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
path: root/source
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2017-09-21 12:14:04 +0300
committerCampbell Barton <ideasman42@gmail.com>2017-09-21 12:14:04 +0300
commit806bc55a34581d49065a5c6221746b6e50715a1d (patch)
treee3be9395693938a6ba9a17af7adf43db4f288701 /source
parent50b9d1d019b8c5b32520230c2225c879264c203f (diff)
Fix T52860: 3D Text crashes w/ Ctrl Backspace
Diffstat (limited to 'source')
-rw-r--r--source/blender/editors/curve/editfont.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/editors/curve/editfont.c b/source/blender/editors/curve/editfont.c
index 57e731874b4..b4ac4ae7cac 100644
--- a/source/blender/editors/curve/editfont.c
+++ b/source/blender/editors/curve/editfont.c
@@ -1201,6 +1201,7 @@ static int delete_exec(bContext *C, wmOperator *op)
case DEL_ALL:
ef->len = ef->pos = 0;
ef->textbuf[0] = 0;
+ BKE_vfont_select_clamp(obedit);
break;
case DEL_SELECTION:
if (!kill_selection(obedit, 0))