diff --git a/fast64_internal/sm64/sm64_objects.py b/fast64_internal/sm64/sm64_objects.py index bd87622e2..d093cfb99 100644 --- a/fast64_internal/sm64/sm64_objects.py +++ b/fast64_internal/sm64/sm64_objects.py @@ -2242,9 +2242,10 @@ def draw_props(self, layout): # pathing for gfx/col exports prop_split(box, self, "export_header_type", "Export Type") - if self.export_header_type == "Custom" and bpy.context.scene.saveTextures: + if self.export_header_type == "Custom": prop_split(box, self, "custom_export_path", "Custom Path") - prop_split(box, self, "custom_include_directory", "Texture Include Directory") + if bpy.context.scene.saveTextures: + prop_split(box, self, "custom_include_directory", "Texture Include Directory") elif self.export_header_type == "Actor": prop_split(box, self, "group_name", "Group")