From 8032333a17e7927085612ebabcd588ce27e832c4 Mon Sep 17 00:00:00 2001 From: Ryan Schultz Date: Fri, 20 Oct 2023 09:53:29 -0500 Subject: [PATCH] Additional clarification on `save` and `save as` --- src/blenderbim/blenderbim/bim/module/project/operator.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/blenderbim/blenderbim/bim/module/project/operator.py b/src/blenderbim/blenderbim/bim/module/project/operator.py index 0ccde5099d..872d5b918a 100644 --- a/src/blenderbim/blenderbim/bim/module/project/operator.py +++ b/src/blenderbim/blenderbim/bim/module/project/operator.py @@ -1115,8 +1115,8 @@ class ExportIFC(bpy.types.Operator): @classmethod def description(cls, context, properties): if properties.should_save_as: - return "Export the IFC project to a selected file" - return "Export the IFC project to this file" + return "Save the IFC file under a new name, or relocate file" + return "Save the IFC file. Will save both .IFC/.BLEND files if synced together" class ImportIFC(bpy.types.Operator):