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-04-25 02:50:49 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-04-25 02:50:49 +0400
commit48893dba2459580ff73f04196e44342b56c0a035 (patch)
tree3211c823b0eb2699e1a8fefdcf76cec8800f0046 /source/blender/editors/space_text
parent47b6b60e5afd498337653356a52d399b7bf1da38 (diff)
style cleanup: no functional changes
Diffstat (limited to 'source/blender/editors/space_text')
-rw-r--r--source/blender/editors/space_text/text_python.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/editors/space_text/text_python.c b/source/blender/editors/space_text/text_python.c
index c24af998835..23fff8fb274 100644
--- a/source/blender/editors/space_text/text_python.c
+++ b/source/blender/editors/space_text/text_python.c
@@ -367,7 +367,8 @@ static short UNUSED_FUNCTION(do_texttools) (SpaceText * st, char ascii, unsigned
#if 0
#ifdef WITH_PYTHON
/* Run text plugin scripts if enabled */
-if (st->doplugins && event && val) {
+if (st->doplugins && event && val)
+{
if (BPY_menu_do_shortcut(PYMENU_TEXTPLUGIN, event, qual)) {
do_draw = 1;
}