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:
authorTon Roosendaal <ton@blender.org>2006-03-09 18:56:08 +0300
committerTon Roosendaal <ton@blender.org>2006-03-09 18:56:08 +0300
commitd918fcd0556ae2d0d1f9c9fbe786f3624ac14db9 (patch)
treeaf5ffcd8137377c0972e8abc1806b4fd37f28a64 /source/blender/src/buttons_logic.c
parent4953b17be206d327d63cb16b4c2fb4d4603589e8 (diff)
Uncommitted change of Campbell 9 days ago... the rest of the logic
editor now screws up... smells like a bug in alignment code, will need to be checked on. (Campbell: you sure checked the buttons before committing this? ;)
Diffstat (limited to 'source/blender/src/buttons_logic.c')
-rw-r--r--source/blender/src/buttons_logic.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/source/blender/src/buttons_logic.c b/source/blender/src/buttons_logic.c
index a598da93b6b..5eb03a99d9c 100644
--- a/source/blender/src/buttons_logic.c
+++ b/source/blender/src/buttons_logic.c
@@ -2500,7 +2500,7 @@ void logic_buts(void)
a= 0;
prop= ob->prop.first;
- uiBlockBeginAlign(block);
+// uiBlockBeginAlign(block);
while(prop) {
but= uiDefBut(block, BUT, 1, "Del", 10, (short)(70-20*a), 40, 19, NULL, 0.0, 0.0, 1, (float)a, "");
@@ -2533,7 +2533,8 @@ void logic_buts(void)
a++;
prop= prop->next;
}
- uiBlockEndAlign(block);
+// uiBlockEndAlign(block);
+// Note: something is wrong with alignment... it attempts to align the next buttons now? will check later...
uiClearButLock();
idar= get_selected_and_linked_obs(&count, G.buts->scaflag);