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>2012-12-31 20:24:49 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-12-31 20:24:49 +0400
commitdd62a2c3756d4335479a561a52468a548f2f1d65 (patch)
tree2a4a40d8148cb3d14155e47e59b09e3305495be8 /source/blender/editors/space_text/text_ops.c
parentf54b6eee45cf24450076d39c3fa3bd0d4e21f564 (diff)
text autocomplete
- make the popup box line up the X axis with the current word. - add poll function for the operator
Diffstat (limited to 'source/blender/editors/space_text/text_ops.c')
-rw-r--r--source/blender/editors/space_text/text_ops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_text/text_ops.c b/source/blender/editors/space_text/text_ops.c
index 01041c0e385..89cc396efbb 100644
--- a/source/blender/editors/space_text/text_ops.c
+++ b/source/blender/editors/space_text/text_ops.c
@@ -98,7 +98,7 @@ static int text_edit_poll(bContext *C)
return 1;
}
-static int text_space_edit_poll(bContext *C)
+int text_space_edit_poll(bContext *C)
{
SpaceText *st = CTX_wm_space_text(C);
Text *text = CTX_data_edit_text(C);