[3.x] Allow disabling the RegEx module in the editor

This commit is contained in:
Aaron Franke
2021-08-31 00:26:40 -05:00
parent be6b7b4f9f
commit 6c4928fe69
5 changed files with 26 additions and 5 deletions

View File

@ -31,6 +31,9 @@
#ifndef RENAME_DIALOG_H
#define RENAME_DIALOG_H
#include "modules/modules_enabled.gen.h"
#ifdef MODULE_REGEX_ENABLED
#include "scene/gui/check_box.h"
#include "scene/gui/dialogs.h"
#include "scene/gui/option_button.h"
@ -114,4 +117,6 @@ public:
~RenameDialog(){};
};
#endif
#endif // MODULE_REGEX_ENABLED
#endif // RENAME_DIALOG_H