From c5b9bf32e9e302c6ecf337a414e813c5a8d7487b Mon Sep 17 00:00:00 2001 From: Philipp Oeser Date: Mon, 31 Aug 2020 12:35:48 +0200 Subject: Fix T80126: Alembic Import dialogue has overwrite protection UI Use `FILE_OPENFILE` when importing, rather than `FILE_SAVE`. Reviewed By: sybren Differential Revision: https://developer.blender.org/D8715 --- source/blender/editors/io/io_alembic.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/editors/io') diff --git a/source/blender/editors/io/io_alembic.c b/source/blender/editors/io/io_alembic.c index 238ebffe153..22171d8be66 100644 --- a/source/blender/editors/io/io_alembic.c +++ b/source/blender/editors/io/io_alembic.c @@ -656,7 +656,7 @@ void WM_OT_alembic_import(wmOperatorType *ot) WM_operator_properties_filesel(ot, FILE_TYPE_FOLDER | FILE_TYPE_ALEMBIC, FILE_BLENDER, - FILE_SAVE, + FILE_OPENFILE, WM_FILESEL_FILEPATH | WM_FILESEL_RELPATH | WM_FILESEL_SHOW_PROPS, FILE_DEFAULTDISPLAY, FILE_SORT_ALPHA); -- cgit v1.2.3