diff --git a/ApplicationCode/ProjectDataModel/RimBinaryExportSettings.cpp b/ApplicationCode/ProjectDataModel/RimBinaryExportSettings.cpp index 35157bd65a..9b2a830198 100644 --- a/ApplicationCode/ProjectDataModel/RimBinaryExportSettings.cpp +++ b/ApplicationCode/ProjectDataModel/RimBinaryExportSettings.cpp @@ -46,7 +46,8 @@ void RimBinaryExportSettings::defineEditorAttribute( const caf::PdmFieldHandle* caf::PdmUiFilePathEditorAttribute* myAttr = dynamic_cast( attribute ); if ( myAttr ) { - myAttr->m_selectSaveFileName = true; + myAttr->m_selectSaveFileName = true; + myAttr->m_fileSelectionFilter = "Text files (*.txt);;All files (*.*)"; } } } diff --git a/ApplicationCode/ProjectDataModel/RimExportInputPropertySettings.cpp b/ApplicationCode/ProjectDataModel/RimExportInputPropertySettings.cpp index 39816ef833..5cebce1788 100644 --- a/ApplicationCode/ProjectDataModel/RimExportInputPropertySettings.cpp +++ b/ApplicationCode/ProjectDataModel/RimExportInputPropertySettings.cpp @@ -45,7 +45,8 @@ void RimExportInputSettings::defineEditorAttribute( const caf::PdmFieldHandle* f caf::PdmUiFilePathEditorAttribute* myAttr = dynamic_cast( attribute ); if ( myAttr ) { - myAttr->m_selectSaveFileName = true; + myAttr->m_selectSaveFileName = true; + myAttr->m_fileSelectionFilter = "Text files (*.txt);;All files (*.*)"; } } }