diff main/MainWindow.cpp @ 2454:d2c37d83f78d

Default to CSV now
author Chris Cannam
date Wed, 15 Jan 2020 14:02:37 +0000
parents 729b96803ab1
children 9b5b4e02f691
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" ||