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>2009-04-12 20:10:43 +0400
committerCampbell Barton <ideasman42@gmail.com>2009-04-12 20:10:43 +0400
commit17f35293ee9d83605db7d73e7213d206d507a587 (patch)
tree703472804a9c2f4c05ccf6b6fcb18935fe6649ce /source/blender
parent332032fb9925091da49efa2e9c3653bdb3e68cba (diff)
PropertyActuator toggle option didnt run when the Value field was empty.
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/src/buttons_logic.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/buttons_logic.c b/source/blender/src/buttons_logic.c
index 1f604aa8480..97f07c7553c 100644
--- a/source/blender/src/buttons_logic.c
+++ b/source/blender/src/buttons_logic.c
@@ -1970,7 +1970,7 @@ static short draw_actuatorbuttons(Object *ob, bActuator *act, uiBlock *block, sh
pa= act->data;
- str= "Type%t|Assign%x0|Add %x1|Copy %x2|Toggle%x3";
+ str= "Type%t|Assign%x0|Add %x1|Copy %x2|Toggle (bool/int/float/timer)%x3";
uiDefButI(block, MENU, B_REDR, str, xco+30,yco-24,width-60, 19, &pa->type, 0, 31, 0, 0, "Type");
uiDefBut(block, TEX, 1, "Prop: ", xco+30,yco-44,width-60, 19, pa->name, 0, 31, 0, 0, "Property name");