Add missing signal blocker

This commit is contained in:
GriffinR 2022-01-05 10:28:20 -05:00 committed by huderlem
parent 181cf4e253
commit 7d5b92c349
2 changed files with 4 additions and 0 deletions

View file

@ -15,6 +15,9 @@ The **"Breaking Changes"** listed below are changes that have been made in the d
- If an object event is inanimate, it will always render using its first frame.
- Only log "Unknown custom script function" when a registered script function is not present in any script.
### Fixed
- Fix maps being incorrectly marked as having unsaved changes when switching maps.
## [4.5.0] - 2021-12-26
### Added
- WSL project paths are now supported. (For example, \wsl$\Ubuntu-20.04\home\huderlem\pokeemerald)

View file

@ -759,6 +759,7 @@ void MainWindow::displayMapProperties() {
const QSignalBlocker blockerA(ui->checkBox_AllowRunning);
const QSignalBlocker blockerB(ui->checkBox_AllowBiking);
const QSignalBlocker blockerC(ui->spinBox_FloorNumber);
const QSignalBlocker blockerD(ui->checkBox_AllowEscapeRope);
ui->checkBox_Visibility->setChecked(false);
ui->checkBox_ShowLocation->setChecked(false);