From 44a4ba878569f6df9d6725a91fb3e64f66608ae1 Mon Sep 17 00:00:00 2001 From: Gaute Lindkvist Date: Tue, 3 Dec 2019 10:48:33 +0100 Subject: [PATCH] Make capital letter *.LAS files show up in import dialog --- .../Commands/WellLogCommands/RicWellLogsImportFileFeature.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ApplicationCode/Commands/WellLogCommands/RicWellLogsImportFileFeature.cpp b/ApplicationCode/Commands/WellLogCommands/RicWellLogsImportFileFeature.cpp index 37b5e7f009..b3a28f8755 100644 --- a/ApplicationCode/Commands/WellLogCommands/RicWellLogsImportFileFeature.cpp +++ b/ApplicationCode/Commands/WellLogCommands/RicWellLogsImportFileFeature.cpp @@ -58,7 +58,8 @@ std::vector RicWellLogsImportFileFeature::importWellLogFiles( c QStringList RicWellLogsImportFileFeature::wellLogFileNameFilters() { QStringList nameFilters; - nameFilters << "*.las"; + nameFilters << "*.las" + << "*.LAS"; return nameFilters; }