Review changes
This commit is contained in:
parent
c543cc0899
commit
91b2ade693
2 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue