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:
authorThomas Dinges <blender@dingto.org>2014-01-12 04:00:16 +0400
committerThomas Dinges <blender@dingto.org>2014-01-12 04:00:16 +0400
commit74216cfdcea325a700ba0322d5a953a21896e37f (patch)
treee89144e24739cad9e6c1f921cddae87573cbda8a /source/blender/editors/space_logic
parentdc9fff74ccc49e6ca2c5b17671844970a61cf844 (diff)
UI: More consistency for T/N sidebars. Logic Editor Properties are on the right now as well, and File Browser Bookmark sidebar uses "T" key, as its on the right.
Diffstat (limited to 'source/blender/editors/space_logic')
-rw-r--r--source/blender/editors/space_logic/space_logic.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/space_logic/space_logic.c b/source/blender/editors/space_logic/space_logic.c
index 4682bbc59ff..9fa1916b972 100644
--- a/source/blender/editors/space_logic/space_logic.c
+++ b/source/blender/editors/space_logic/space_logic.c
@@ -75,7 +75,7 @@ ARegion *logic_has_buttons_region(ScrArea *sa)
BLI_insertlinkafter(&sa->regionbase, ar, arnew);
arnew->regiontype = RGN_TYPE_UI;
- arnew->alignment = RGN_ALIGN_LEFT;
+ arnew->alignment = RGN_ALIGN_RIGHT;
arnew->flag = RGN_FLAG_HIDDEN;
@@ -112,7 +112,7 @@ static SpaceLink *logic_new(const bContext *C)
BLI_addtail(&slogic->regionbase, ar);
ar->regiontype= RGN_TYPE_UI;
- ar->alignment= RGN_ALIGN_LEFT;
+ ar->alignment= RGN_ALIGN_RIGHT;
/* main area */
ar= MEM_callocN(sizeof(ARegion), "main area for logic");