From 976962fd71d6d53675308e6ead049da9d7238690 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Devernay?= Date: Thu, 16 Feb 2017 17:39:16 +0100 Subject: [PATCH] CurveWidget::exportCurveToAscii: column separator is space, not _ --- Gui/CurveWidget.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gui/CurveWidget.cpp b/Gui/CurveWidget.cpp index 74f88892e5..3e4729daee 100644 --- a/Gui/CurveWidget.cpp +++ b/Gui/CurveWidget.cpp @@ -2185,7 +2185,7 @@ CurveWidget::exportCurveToAscii() ts << 0; } if (c < columnsCount - 1) { - ts << '_'; + ts << ' '; } } ts << '\n';