diff options
author | Michael Alexsander <michaelalexsander@protonmail.com> | 2024-03-23 17:10:57 -0300 |
---|---|---|
committer | Michael Alexsander <michaelalexsander@protonmail.com> | 2024-03-23 17:10:57 -0300 |
commit | 9f56287d96d5adf43a11b470a27e3d07599bee9f (patch) | |
tree | ae40e9037b53ee2fc1d52703173a0780b8ba03a4 /editor/plugins | |
parent | fe01776f05b1787b28b4a270d53037a3c25f4ca2 (diff) | |
download | redot-engine-9f56287d96d5adf43a11b470a27e3d07599bee9f.tar.gz |
Remove pointless `_notification()` function in `EditorPropertyOTVariation`
Diffstat (limited to 'editor/plugins')
-rw-r--r-- | editor/plugins/font_config_plugin.cpp | 8 | ||||
-rw-r--r-- | editor/plugins/font_config_plugin.h | 1 |
2 files changed, 0 insertions, 9 deletions
diff --git a/editor/plugins/font_config_plugin.cpp b/editor/plugins/font_config_plugin.cpp index 4011d36456..70911ea364 100644 --- a/editor/plugins/font_config_plugin.cpp +++ b/editor/plugins/font_config_plugin.cpp @@ -383,14 +383,6 @@ EditorPropertyFontMetaOverride::EditorPropertyFontMetaOverride(bool p_script) { /* EditorPropertyOTVariation */ /*************************************************************************/ -void EditorPropertyOTVariation::_notification(int p_what) { - switch (p_what) { - case NOTIFICATION_ENTER_TREE: - case NOTIFICATION_THEME_CHANGED: { - } break; - } -} - void EditorPropertyOTVariation::_property_changed(const String &p_property, const Variant &p_value, const String &p_name, bool p_changing) { if (p_property.begins_with("keys")) { Dictionary dict = object->get_dict(); diff --git a/editor/plugins/font_config_plugin.h b/editor/plugins/font_config_plugin.h index dc17a7717e..1adb578950 100644 --- a/editor/plugins/font_config_plugin.h +++ b/editor/plugins/font_config_plugin.h @@ -139,7 +139,6 @@ class EditorPropertyOTVariation : public EditorProperty { EditorPaginator *paginator = nullptr; protected: - void _notification(int p_what); static void _bind_methods(){}; void _edit_pressed(); |