Skip to content

Commit

Permalink
Merge pull request #304 from Krakonos/issue-277-add-explanation-to-sa…
Browse files Browse the repository at this point in the history
…ve-after-upload-reminder

FIX: Add explanation to save after upload reminder.
  • Loading branch information
Krakonos authored Oct 2, 2024
2 parents 5bef61a + 620fd67 commit f2d82bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/MainWindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4306,7 +4306,7 @@ void MainWindow::syncOSM(OsmServer server)
saveDocument(currentProjectFile);
} else {
if (QMessageBox::warning(this,tr("Unsaved changes"),
tr("It is strongly recommended to save the changes to your document after an upload.\nDo you want to do this now?"),
tr("It is strongly recommended to save the changes to your document after an upload, since the document contains information about dirty object that need to be uploaded. Not saving and uploading from the same document may result in duplicate geometry.\nDo you want to do this now?"),
QMessageBox::Yes | QMessageBox::No, QMessageBox::Yes) == QMessageBox::Yes) {
saveDocument(currentProjectFile);

Expand Down

0 comments on commit f2d82bb

Please sign in to comment.