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:
authorCampbell Barton <ideasman42@gmail.com>2018-07-03 19:41:06 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-07-03 19:45:45 +0300
commit79152371c3c259fed9d1106aa8003beef28168e6 (patch)
tree6c74541740b2f198c4ee50a7951b24ecbf8ec741 /source/blender/editors/space_buttons
parent81a23d1f2db5d3c21e3c35cf3128f5e6326df54a (diff)
UI: add tool properties contexts
Currently unused, create for add-ons to populate.
Diffstat (limited to 'source/blender/editors/space_buttons')
-rw-r--r--source/blender/editors/space_buttons/space_buttons.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/editors/space_buttons/space_buttons.c b/source/blender/editors/space_buttons/space_buttons.c
index a951c2a8524..ba9045346c7 100644
--- a/source/blender/editors/space_buttons/space_buttons.c
+++ b/source/blender/editors/space_buttons/space_buttons.c
@@ -225,16 +225,16 @@ static void buttons_main_region_layout_tool(const bContext *C, SpaceButs *sbuts,
ARRAY_SET_ITEMS(contexts, ".curve_edit");
break;
case CTX_MODE_EDIT_TEXT:
- ARRAY_SET_ITEMS(contexts, ".todo");
+ ARRAY_SET_ITEMS(contexts, ".text_edit");
break;
case CTX_MODE_EDIT_ARMATURE:
ARRAY_SET_ITEMS(contexts, ".armature_edit");
break;
case CTX_MODE_EDIT_METABALL:
- ARRAY_SET_ITEMS(contexts, ".todo");
+ ARRAY_SET_ITEMS(contexts, ".mball_edit");
break;
case CTX_MODE_EDIT_LATTICE:
- ARRAY_SET_ITEMS(contexts, ".todo");
+ ARRAY_SET_ITEMS(contexts, ".lattice_edit");
break;
case CTX_MODE_POSE:
ARRAY_SET_ITEMS(contexts, ".posemode");
@@ -255,7 +255,7 @@ static void buttons_main_region_layout_tool(const bContext *C, SpaceButs *sbuts,
ARRAY_SET_ITEMS(contexts, ".particlemode");
break;
case CTX_MODE_OBJECT:
- ARRAY_SET_ITEMS(contexts, ".todo");
+ ARRAY_SET_ITEMS(contexts, ".objectmode");
break;
}
}