diff options
author | kobewi <kobewi4e@gmail.com> | 2023-11-11 19:14:05 +0100 |
---|---|---|
committer | kobewi <kobewi4e@gmail.com> | 2024-01-31 13:17:11 +0100 |
commit | e86750dcaac4618ef7e9d5c4d8f6e0ab8696bbe1 (patch) | |
tree | 6bd3b885c169ffe73cb163004fe44c72c228a152 /editor/plugins/theme_editor_plugin.h | |
parent | f8a039e9b54875a3435ace4b9953cefa591a0753 (diff) | |
download | redot-engine-e86750dcaac4618ef7e9d5c4d8f6e0ab8696bbe1.tar.gz |
Fetch theme editor items from ThemeDB
Diffstat (limited to 'editor/plugins/theme_editor_plugin.h')
-rw-r--r-- | editor/plugins/theme_editor_plugin.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/theme_editor_plugin.h b/editor/plugins/theme_editor_plugin.h index 8ad262da55..ba3446807e 100644 --- a/editor/plugins/theme_editor_plugin.h +++ b/editor/plugins/theme_editor_plugin.h @@ -373,7 +373,7 @@ class ThemeTypeEditor : public MarginContainer { VBoxContainer *_create_item_list(Theme::DataType p_data_type); void _update_type_list(); void _update_type_list_debounced(); - HashMap<StringName, bool> _get_type_items(String p_type_name, void (Theme::*get_list_func)(const StringName &, List<StringName> *) const, bool include_default); + HashMap<StringName, bool> _get_type_items(String p_type_name, Theme::DataType p_type, bool p_include_default); HBoxContainer *_create_property_control(Theme::DataType p_data_type, String p_item_name, bool p_editable); void _add_focusable(Control *p_control); void _update_type_items(); |