changeset 2454:d2c37d83f78d

Default to CSV now
author Chris Cannam
date Wed, 15 Jan 2020 14:02:37 +0000
parents 38f259c3be10
children 9b5b4e02f691
files main/MainWindow.cpp
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/main/MainWindow.cpp	Wed Jan 15 14:02:25 2020 +0000
+++ b/main/MainWindow.cpp	Wed Jan 15 14:02:37 2020 +0000
@@ -3022,7 +3022,7 @@
     if (path == "") return;
 
     QString suffix = QFileInfo(path).suffix().toLower();
-    if (suffix == "") suffix = "svl"; // this is what exportLayerTo defaults to
+    if (suffix == "") suffix = "csv";
 
     bool canWriteSelection =
         ! (suffix == "xml" || suffix == "svl" ||