mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Fix order of CSV field separators
Unfortunately we are referencing these separators with index, so they need to be on same order as used in XSLT files. Signed-off-by: Miika Turkia <miika.turkia@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
c1f716614f
commit
ffdb78a3dc
1 changed files with 1 additions and 1 deletions
|
@ -323,7 +323,7 @@ DiveLogImportDialog::DiveLogImportDialog(QStringList fn, QWidget *parent) : QDia
|
|||
for (int i = 0; !CSVApps[i].name.isNull(); ++i)
|
||||
ui->knownImports->addItem(CSVApps[i].name);
|
||||
|
||||
ui->CSVSeparator->addItems( QStringList() << tr("Tab") << ";" << ",");
|
||||
ui->CSVSeparator->addItems( QStringList() << tr("Tab") << "," << ";");
|
||||
|
||||
loadFileContents(-1, INITIAL);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue