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
path: root/source
diff options
context:
space:
mode:
authorDalai Felinto <dfelinto@gmail.com>2019-06-14 18:56:21 +0300
committerDalai Felinto <dfelinto@gmail.com>2019-06-14 18:58:36 +0300
commitf51de2246c7916e7855421263253bc12a6764a24 (patch)
tree874a721c2d3983f7707d4a2b16a5cecd0087b96a /source
parent648a352bbfdb76128bbaf575f7aa23bf535f4fda (diff)
Fix T65641: Move to collection - arrow keys work in the opposite direction
Patch my Germano Cavalcante (mano-wii).
Diffstat (limited to 'source')
-rw-r--r--source/blender/editors/object/object_edit.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/editors/object/object_edit.c b/source/blender/editors/object/object_edit.c
index 8ccd35051c6..4f1154c02e3 100644
--- a/source/blender/editors/object/object_edit.c
+++ b/source/blender/editors/object/object_edit.c
@@ -1604,6 +1604,7 @@ static void move_to_collection_menu_create(bContext *UNUSED(C), uiLayout *layout
MoveToCollectionData *menu = menu_v;
const char *name = BKE_collection_ui_name_get(menu->collection);
+ UI_block_flag_enable(uiLayoutGetBlock(layout), UI_BLOCK_IS_FLIP);
uiItemIntO(layout, name, ICON_NONE, menu->ot->idname, "collection_index", menu->index);
uiItemS(layout);