Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[SpreadSheet] Fixes #4563 exported range issue
  • Loading branch information
0penBrain authored and wwmayer committed Feb 12, 2021
1 parent 17af884 commit 2a3edfd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Mod/Spreadsheet/App/Sheet.cpp
Expand Up @@ -241,7 +241,7 @@ bool Sheet::exportToFile(const std::string &filename, char delimiter, char quote
if (prevRow != -1 && prevRow != i->row()) {
for (int j = prevRow; j < i->row(); ++j)
file << std::endl;
prevCol = 0;
prevCol = usedCells.begin()->col();
}
if (prevCol != -1 && i->col() != prevCol) {
for (int j = prevCol; j < i->col(); ++j)
Expand Down

0 comments on commit 2a3edfd

Please sign in to comment.