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-14 21:20:46 +0400
committerGuillermo S. Romero <gsr.b3d@infernal-iceberg.com>2009-06-14 21:20:46 +0400
commit680a838a791a5fd08c9e52b77cf6b7d3c0b2e7e2 (patch)
treee99d5966f5db12de983a1fe20f325bab7da31834 /source/blender/editors
parent069c13c9ea810e0933d7b58ba6b2da4c08fd50c7 (diff)
Enable non reordering menus option, it was disabled without explanation (?).
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 e37f7d2158c..b3f24be2f9a 100644
--- a/source/blender/editors/interface/interface.c
+++ b/source/blender/editors/interface/interface.c
@@ -2874,8 +2874,8 @@ void uiBlockFlipOrder(uiBlock *block)
uiBut *but, *next;
float centy, miny=10000, maxy= -10000;
-// if(U.uiflag & USER_PLAINMENUS)
-// return;
+ if(U.uiflag & USER_PLAINMENUS)
+ return;
for(but= block->buttons.first; but; but= but->next) {
if(but->flag & UI_BUT_ALIGN) return;