[Bf-blender-cvs] [a94f16dd0aa] usd-importer-T81257: Fixed assignment of wm_usd_import_invoke callback.

Michael A. Kowalski noreply at git.blender.org
Fri Oct 2 23:55:11 CEST 2020


Commit: a94f16dd0aa1e6a975d670004ab931fb2e5c32fe
Author: Michael A. Kowalski
Date:   Fri Oct 2 17:03:51 2020 -0400
Branches: usd-importer-T81257
https://developer.blender.org/rBa94f16dd0aa1e6a975d670004ab931fb2e5c32fe

Fixed assignment of wm_usd_import_invoke callback.

===================================================================

M	source/blender/editors/io/io_usd.c

===================================================================

diff --git a/source/blender/editors/io/io_usd.c b/source/blender/editors/io/io_usd.c
index feb0c8aa6af..5c3e5d3e02b 100644
--- a/source/blender/editors/io/io_usd.c
+++ b/source/blender/editors/io/io_usd.c
@@ -311,7 +311,7 @@ void WM_OT_usd_import(wmOperatorType *ot)
   ot->idname = "WM_OT_usd_import";
   ot->flag = OPTYPE_REGISTER | OPTYPE_UNDO;
 
-  ot->invoke = wm_usd_export_invoke;
+  ot->invoke = wm_usd_import_invoke;
   ot->exec = wm_usd_import_exec;
   ot->poll = WM_operator_winactive;
   ot->ui = wm_usd_import_draw;



More information about the Bf-blender-cvs mailing list