diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-03-12 22:00:38 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-12 22:00:38 +0100 |
commit | 84b358c1d8a01ce70a56a099ef98ae014a91239b (patch) | |
tree | 9dfb634eb5126e47dc576e62473361fea1f04ecb /editor/localization_editor.h | |
parent | 5959d38c6838d3470ba2b1e166602366cdbac6c5 (diff) | |
parent | 918b09cabc39dbf13bed2406da56035341ac1cf4 (diff) |
Merge pull request #58338 from aaronfranke/bools
Initialize bools in the headers in `editor/`
Diffstat (limited to 'editor/localization_editor.h')
-rw-r--r-- | editor/localization_editor.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/localization_editor.h b/editor/localization_editor.h index bde1b894e2..3424ba7c55 100644 --- a/editor/localization_editor.h +++ b/editor/localization_editor.h @@ -56,7 +56,7 @@ class LocalizationEditor : public VBoxContainer { EditorFileDialog *pot_generate_dialog; UndoRedo *undo_redo; - bool updating_translations; + bool updating_translations = false; String localization_changed; void _translation_file_open(); |