Default to No for file watcher prompt

This commit is contained in:
GriffinR 2022-10-25 17:53:12 -04:00
parent 4187732baa
commit ce6abb0a81

View file

@ -69,6 +69,7 @@ void Project::initSignals() {
notice.setInformativeText(QString("The file %1 has changed on disk. Would you like to reload the project?")
.arg(changed.remove(this->root + "/")));
notice.setStandardButtons(QMessageBox::No | QMessageBox::Yes);
notice.setDefaultButton(QMessageBox::No);
notice.setIcon(QMessageBox::Question);
QCheckBox showAgainCheck("Do not ask again.");