summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2015-06-10 11:57:31 -0700
committerGravatar Dirk Hohndel <dirk@hohndel.org>2015-06-10 11:57:31 -0700
commit0da0a40bb8513eff186b5cc2a4b006bb4cb2ad6b (patch)
tree985c2ecaab6b6aed78d202ab1b67a0d164f6a980
parent2c22b24ef6503f604dff9cb0a0aea43c16e081d3 (diff)
downloadsubsurface-0da0a40bb8513eff186b5cc2a4b006bb4cb2ad6b.tar.gz
Don't show the V2 warning anymore
This now happens in its own thread... But leave the infrastructure so we can ask questions about the geo encoding Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r--qt-ui/mainwindow.cpp8
1 files changed, 7 insertions, 1 deletions
diff --git a/qt-ui/mainwindow.cpp b/qt-ui/mainwindow.cpp
index 04a4e8467..ac7981019 100644
--- a/qt-ui/mainwindow.cpp
+++ b/qt-ui/mainwindow.cpp
@@ -1468,13 +1468,19 @@ void MainWindow::importTxtFiles(const QStringList fileNames)
void MainWindow::showV2Dialog()
{
// here we need to ask the user if / how they want to do the reverse geo coding
- // for now this is just a warning that things could take a long time
+ //
+ // since the reverse geo coding now happens in its own thread the warning isn't needed
+ // anymore, but I'll leave this function / the logic to call it around because we are likely
+ // too have to add questions about how the user wants to do the reverse geo coding...
+ //
+#if 0
QMessageBox d(QMessageBox::Information,
tr("Welcom to Subsurface %1").arg(subsurface_version()),
tr("Importing data files from earlier versions of Subsurface can take a significant amount of time"),
QMessageBox::Ok,
this);
d.exec();
+#endif
}
void MainWindow::loadFiles(const QStringList fileNames)