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:
authorJiri Hnidek <jiri.hnidek@tul.cz>2005-05-30 12:31:07 +0400
committerJiri Hnidek <jiri.hnidek@tul.cz>2005-05-30 12:31:07 +0400
commitbb78faef2701120809e7fca9000e7dd8af5c09c1 (patch)
tree92e6f797eda11be2ff6c04657671bd0228c0cd21 /source
parente4e096187e93f59c33e40cb1c8cbdf776a554b4d (diff)
- hide button in button window didn't do anything due to some changes in
transform code, fixed now
Diffstat (limited to 'source')
-rw-r--r--source/blender/src/buttons_editing.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/buttons_editing.c b/source/blender/src/buttons_editing.c
index 411f5f92280..b5bfffdd0af 100644
--- a/source/blender/src/buttons_editing.c
+++ b/source/blender/src/buttons_editing.c
@@ -1465,7 +1465,7 @@ static void editing_panel_mball_tools(Object *ob, MetaBall *mb)
uiBlockBeginAlign(block);
uiDefButS(block, TOG|BIT|1, B_RECALCMBALL, "Negative",753,16,125,19, &lastelem->flag, 0, 0, 0, 0, "Make active meta creating holes");
- uiDefButS(block, TOG|BIT|2, B_RECALCMBALL, "Hide",878,16,125,19, &lastelem->flag, 0, 0, 0, 0, "Make active meta invisible");
+ uiDefButS(block, TOG|BIT|3, B_RECALCMBALL, "Hide",878,16,125,19, &lastelem->flag, 0, 0, 0, 0, "Make active meta invisible");
uiBlockEndAlign(block);
}