Skip to content

Commit

Permalink
CurveWidget::exportCurveToAscii: column separator is space, not _
Browse files Browse the repository at this point in the history
  • Loading branch information
devernay committed Feb 16, 2017
1 parent 5019e69 commit 976962f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Gui/CurveWidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2185,7 +2185,7 @@ CurveWidget::exportCurveToAscii()
ts << 0;
}
if (c < columnsCount - 1) {
ts << '_';
ts << ' ';
}
}
ts << '\n';
Expand Down

0 comments on commit 976962f

Please sign in to comment.