diff options
author | Aaron Franke <arnfranke@yahoo.com> | 2023-08-24 12:31:51 -0500 |
---|---|---|
committer | Aaron Franke <arnfranke@yahoo.com> | 2023-08-24 12:32:10 -0500 |
commit | 4c51544d62fd52e549ba9e916f082fff90215953 (patch) | |
tree | 4b982adb4d8273176a0034d040c5dabf0d68e38b /editor/export/project_export.cpp | |
parent | 6758a7f8c07d1f4c8ec4f052ded6d26402967ebe (diff) | |
download | redot-engine-4c51544d62fd52e549ba9e916f082fff90215953.tar.gz |
Fix redundant enter tree notification in project export texture format
Diffstat (limited to 'editor/export/project_export.cpp')
-rw-r--r-- | editor/export/project_export.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/editor/export/project_export.cpp b/editor/export/project_export.cpp index 61f875713f..b0d7534c83 100644 --- a/editor/export/project_export.cpp +++ b/editor/export/project_export.cpp @@ -65,7 +65,6 @@ void ProjectExportTextureFormatError::_bind_methods() { void ProjectExportTextureFormatError::_notification(int p_what) { switch (p_what) { - case NOTIFICATION_ENTER_TREE: case NOTIFICATION_THEME_CHANGED: { texture_format_error_label->add_theme_color_override("font_color", get_theme_color(SNAME("error_color"), SNAME("Editor"))); } break; |