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>2019-01-02 08:14:22 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-01-02 08:26:52 +0300
commitaae5f2b04611fee5de003083c6545fc89db33aa4 (patch)
tree22b958c14ad7b690ba9f7c44a5b35a0644d2e234 /source/blender/makesrna/intern/rna_workspace.c
parent8fbba22205581542387f3cd0dfcf84f53466ac81 (diff)
Fix image editor tool-settings missing from topbar
Diffstat (limited to 'source/blender/makesrna/intern/rna_workspace.c')
-rw-r--r--source/blender/makesrna/intern/rna_workspace.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_workspace.c b/source/blender/makesrna/intern/rna_workspace.c
index f0c00bd1940..1a06bf7b086 100644
--- a/source/blender/makesrna/intern/rna_workspace.c
+++ b/source/blender/makesrna/intern/rna_workspace.c
@@ -147,7 +147,7 @@ const EnumPropertyItem *rna_WorkSpace_tools_mode_itemf(
case SPACE_VIEW3D:
return rna_enum_context_mode_items;
case SPACE_IMAGE:
- return rna_enum_space_image_mode_items;
+ return rna_enum_space_image_mode_all_items;
}
return DummyRNA_DEFAULT_items;
}