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:
authormakowalski <makowalski@nvidia.com>2021-07-20 01:55:17 +0300
committermakowalski <makowalski@nvidia.com>2021-07-20 01:55:17 +0300
commit2ad93e434d912b40421b1954b6f3cca12fdabfc9 (patch)
tree87f08490410ea3d9aba2203e4c759cdb9d052c0e
parent509958c852b219e173f91b7758a4ca06ab793aae (diff)
USD import option name cleanup.
Removed unneeded Import prefix from option names.
-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",