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:
-rw-r--r--source/blender/editors/io/io_usd.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/source/blender/editors/io/io_usd.c b/source/blender/editors/io/io_usd.c
index a2c9e0f8699..9a6d991bf1e 100644
--- a/source/blender/editors/io/io_usd.c
+++ b/source/blender/editors/io/io_usd.c
@@ -451,12 +451,12 @@ void WM_OT_usd_import(struct wmOperatorType *ot)
"Set Frame Range",
"Update the scene's start and end frame to match those of the USD archive");
- RNA_def_boolean(ot->srna, "import_cameras", true, "Import Cameras", "");
- RNA_def_boolean(ot->srna, "import_curves", true, "Import Curves", "");
- RNA_def_boolean(ot->srna, "import_lights", true, "Import Lights", "");
- RNA_def_boolean(ot->srna, "import_materials", true, "Import Materials", "");
- RNA_def_boolean(ot->srna, "import_meshes", true, "Import Meshes", "");
- RNA_def_boolean(ot->srna, "import_volumes", true, "Import Volumes", "");
+ RNA_def_boolean(ot->srna, "import_cameras", true, "Cameras", "");
+ RNA_def_boolean(ot->srna, "import_curves", true, "Curves", "");
+ RNA_def_boolean(ot->srna, "import_lights", true, "Lights", "");
+ RNA_def_boolean(ot->srna, "import_materials", true, "Materials", "");
+ RNA_def_boolean(ot->srna, "import_meshes", true, "Meshes", "");
+ RNA_def_boolean(ot->srna, "import_volumes", true, "Volumes", "");
RNA_def_boolean(ot->srna,
"import_subdiv",