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:
authorJulian Eisel <eiseljulian@gmail.com>2019-08-18 16:16:59 +0300
committerJulian Eisel <eiseljulian@gmail.com>2019-08-18 16:21:18 +0300
commit935d62245871cb5476fc1e3003f905a440198a49 (patch)
tree85dcd87f746f06da554c21e4351d035900d42e47 /source/blender/editors/space_file/file_ops.c
parent8209f25c3b08f726a221cbcbcfa48dbea597c772 (diff)
Add right sidebar region for operator properties
This always shows up right now. Hiding it correctly still has to be done.
Diffstat (limited to 'source/blender/editors/space_file/file_ops.c')
-rw-r--r--source/blender/editors/space_file/file_ops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_file/file_ops.c b/source/blender/editors/space_file/file_ops.c
index d1006cd8e35..9ddd50a9bbe 100644
--- a/source/blender/editors/space_file/file_ops.c
+++ b/source/blender/editors/space_file/file_ops.c
@@ -2314,7 +2314,7 @@ ARegion *file_tools_region(ScrArea *sa)
ar = MEM_callocN(sizeof(ARegion), "tool props for file");
BLI_insertlinkafter(&sa->regionbase, arnew, ar);
ar->regiontype = RGN_TYPE_TOOL_PROPS;
- ar->alignment = RGN_ALIGN_BOTTOM | RGN_SPLIT_PREV;
+ ar->alignment = RGN_ALIGN_RIGHT;
return arnew;
}