diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-03-24 01:24:00 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-03-24 01:24:00 +0100 |
commit | 9293cedaa651b7f2d69cfab82a0242865ed34496 (patch) | |
tree | 7d10c999224d3f351ff197a43b905aa4ffa2a5c7 /editor/plugins/font_config_plugin.cpp | |
parent | 1999b661d0e174996fa087e8dcc32a2f8f2001ee (diff) | |
parent | 9f56287d96d5adf43a11b470a27e3d07599bee9f (diff) | |
download | redot-engine-9293cedaa651b7f2d69cfab82a0242865ed34496.tar.gz |
Merge pull request #89823 from YeldhamDev/variation,_not_notification
Remove pointless `_notification()` function in `EditorPropertyOTVariation`
Diffstat (limited to 'editor/plugins/font_config_plugin.cpp')
-rw-r--r-- | editor/plugins/font_config_plugin.cpp | 8 |
1 files changed, 0 insertions, 8 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(); |