Review changes

This commit is contained in:
GriffinR 2023-12-25 01:57:31 -05:00
parent c543cc0899
commit 91b2ade693
2 changed files with 2 additions and 2 deletions

View file

@ -1,5 +1,5 @@
#include "bitpacker.h"
#include <cmath>
#include <limits>
// Sometimes we can't explicitly define bitfields because we need to allow users to
// change the size and arrangement of its members. In those cases we use this

View file

@ -697,7 +697,7 @@ void ProjectSettingsEditor::closeEvent(QCloseEvent* event) {
if (this->projectNeedsReload) {
// Note: Declining this prompt with changes that need a reload may cause problems
if (this->prompt("Settings changed, reload project to apply changes?") == QMessageBox::Yes)
if (this->prompt("Settings saved, reload project to apply changes?") == QMessageBox::Yes)
emit this->reloadProject();
}
QMainWindow::closeEvent(event);