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>2011-03-09 18:12:33 +0300
committerTon Roosendaal <ton@blender.org>2011-03-09 18:12:33 +0300
commitf0b40cbd0d8feda0b1e65d5ea004f6a29215d5e6 (patch)
treec30b75fdd41877c7ce32c0d9aeeab6740a29cce2 /source/blender/editors/space_buttons/space_buttons.c
parent4fc83c8efa0a355c69ee368750da8584ae7c4a0d (diff)
Todo item: defaulting newly created Property editors to vertical.
(At least until horizontal layouts work acceptable)
Diffstat (limited to 'source/blender/editors/space_buttons/space_buttons.c')
-rw-r--r--source/blender/editors/space_buttons/space_buttons.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_buttons/space_buttons.c b/source/blender/editors/space_buttons/space_buttons.c
index 0767da40984..8df1f218767 100644
--- a/source/blender/editors/space_buttons/space_buttons.c
+++ b/source/blender/editors/space_buttons/space_buttons.c
@@ -68,7 +68,7 @@ static SpaceLink *buttons_new(const bContext *UNUSED(C))
sbuts= MEM_callocN(sizeof(SpaceButs), "initbuts");
sbuts->spacetype= SPACE_BUTS;
- sbuts->align= BUT_AUTO;
+ sbuts->align= BUT_VERTICAL;
/* header */
ar= MEM_callocN(sizeof(ARegion), "header for buts");