Merge pull request #5697 from TheHX/issue-5664
Fix Orphan StringName on EditorAutoloadSettings class
This commit is contained in:
commit
3e2c7bf797
|
@ -36,8 +36,6 @@
|
|||
|
||||
#define PREVIEW_LIST_MAX_SIZE 10
|
||||
|
||||
StringName EditorAutoloadSettings::autoload_changed = StringName();
|
||||
|
||||
void EditorAutoloadSettings::_notification(int p_what) {
|
||||
|
||||
if (p_what == NOTIFICATION_ENTER_TREE) {
|
||||
|
|
|
@ -44,7 +44,7 @@ class EditorAutoloadSettings : public VBoxContainer {
|
|||
BUTTON_DELETE
|
||||
};
|
||||
|
||||
static StringName autoload_changed;
|
||||
String autoload_changed;
|
||||
|
||||
struct AutoLoadInfo {
|
||||
String name;
|
||||
|
|
Loading…
Reference in New Issue