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:
authorGuillermo S. Romero <gsr.b3d@infernal-iceberg.com>2009-06-16 06:40:39 +0400
committerGuillermo S. Romero <gsr.b3d@infernal-iceberg.com>2009-06-16 06:40:39 +0400
commit573f2f34fa8115a6193902b3995168d45ce8257a (patch)
tree65569284c16cc093a56dff1f4646c6653b1be86a /source/blender/editors
parent172a3e9d0e6459122bb8e501eadaa3ef9b9f1e34 (diff)
Separate "content reordering" from "plain menus".
Diffstat (limited to 'source/blender/editors')
-rw-r--r--source/blender/editors/interface/interface.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/interface/interface.c b/source/blender/editors/interface/interface.c
index 83c9fc2ac2d..9a06bd21ea2 100644
--- a/source/blender/editors/interface/interface.c
+++ b/source/blender/editors/interface/interface.c
@@ -2850,8 +2850,8 @@ void uiBlockFlipOrder(uiBlock *block)
uiBut *but, *next;
float centy, miny=10000, maxy= -10000;
- /*if(U.uiflag & USER_PLAINMENUS)
- return;*/
+ if(!(U.uiflag & USER_DIRECTIONALORDER))
+ return;
for(but= block->buttons.first; but; but= but->next) {
if(but->flag & UI_BUT_ALIGN) return;