[Bf-blender-cvs] [337ce7c9849] blender-v2.82-release: UI: hide filter alembic option

Campbell Barton noreply at git.blender.org
Wed Jan 29 03:02:24 CET 2020


Commit: 337ce7c98494109dea39ad86a664f2c15e73ac51
Author: Campbell Barton
Date:   Wed Jan 29 12:59:57 2020 +1100
Branches: blender-v2.82-release
https://developer.blender.org/rB337ce7c98494109dea39ad86a664f2c15e73ac51

UI: hide filter alembic option

This was showing along side image save options.

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

M	source/blender/windowmanager/intern/wm_operator_props.c

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

diff --git a/source/blender/windowmanager/intern/wm_operator_props.c b/source/blender/windowmanager/intern/wm_operator_props.c
index 2a40fb138c0..4c0b35a65e5 100644
--- a/source/blender/windowmanager/intern/wm_operator_props.c
+++ b/source/blender/windowmanager/intern/wm_operator_props.c
@@ -157,6 +157,7 @@ void WM_operator_properties_filesel(wmOperatorType *ot,
   RNA_def_property_flag(prop, PROP_HIDDEN | PROP_SKIP_SAVE);
   prop = RNA_def_boolean(
       ot->srna, "filter_alembic", (filter & FILE_TYPE_ALEMBIC) != 0, "Filter Alembic files", "");
+  RNA_def_property_flag(prop, PROP_HIDDEN | PROP_SKIP_SAVE);
   prop = RNA_def_boolean(
       ot->srna, "filter_usd", (filter & FILE_TYPE_USD) != 0, "Filter USD files", "");
   RNA_def_property_flag(prop, PROP_HIDDEN | PROP_SKIP_SAVE);



More information about the Bf-blender-cvs mailing list