mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-11-21 16:37:20 +01:00
Update theme item names for pandemonium.
This commit is contained in:
parent
410029c9e0
commit
150b8e5c02
@ -2659,15 +2659,15 @@ void Control::get_argument_options(const StringName &p_function, int p_idx, List
|
||||
if (p_idx == 0) {
|
||||
List<StringName> sn;
|
||||
String pf = p_function;
|
||||
if (pf == "add_color_override" || pf == "has_color" || pf == "has_color_override" || pf == "get_color" || pf == "remove_color_override") {
|
||||
if (pf == "add_theme_color_override" || pf == "has_theme_color" || pf == "has_theme_color_override" || pf == "get_theme_color" || pf == "remove_theme_color_override") {
|
||||
Theme::get_default()->get_color_list(get_class(), &sn);
|
||||
} else if (pf == "add_stylebox_override" || pf == "has_stylebox" || pf == "has_stylebox_override" || pf == "get_stylebox" || pf == "remove_stylebox_override") {
|
||||
} else if (pf == "add_theme_stylebox_override" || pf == "has_theme_stylebox" || pf == "has_theme_stylebox_override" || pf == "get_theme_stylebox" || pf == "remove_theme_stylebox_override") {
|
||||
Theme::get_default()->get_stylebox_list(get_class(), &sn);
|
||||
} else if (pf == "add_font_override" || pf == "has_font" || pf == "has_font_override" || pf == "get_font" || pf == "remove_font_override") {
|
||||
} else if (pf == "add_theme_font_override" || pf == "has_theme_font" || pf == "has_theme_font_override" || pf == "get_theme_font" || pf == "remove_theme_font_override") {
|
||||
Theme::get_default()->get_font_list(get_class(), &sn);
|
||||
} else if (pf == "add_constant_override" || pf == "has_constant" || pf == "has_constant_override" || pf == "get_constant" || pf == "remove_constant_override") {
|
||||
} else if (pf == "add_theme_constant_override" || pf == "has_theme_constant" || pf == "has_theme_constant_override" || pf == "get_theme_constant" || pf == "remove_theme_constant_override") {
|
||||
Theme::get_default()->get_constant_list(get_class(), &sn);
|
||||
} else if (pf == "add_icon_override" || pf == "has_icon" || pf == "has_icon_override" || pf == "get_icon" || pf == "remove_icon_override") {
|
||||
} else if (pf == "add_theme_icon_override" || pf == "has_theme_icon" || pf == "has_theme_icon_override" || pf == "get_theme_icon" || pf == "remove_theme_icon_override") {
|
||||
Theme::get_default()->get_icon_list(get_class(), &sn);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user