diff options
author | jmb462 <jmb462@gmail.com> | 2022-02-06 20:17:35 +0100 |
---|---|---|
committer | jmb462 <jmb462@gmail.com> | 2022-02-06 23:06:11 +0100 |
commit | a988fad9a092053434545c32afae91ccbdfbe792 (patch) | |
tree | 90b0666a880ef744364d65102195561dd93a56bc /editor/editor_log.h | |
parent | 95719930a8940d4737d512d75004e8b5cd50e825 (diff) | |
download | redot-engine-a988fad9a092053434545c32afae91ccbdfbe792.tar.gz |
Add missing SNAME macro optimization to all theme methods call
Diffstat (limited to 'editor/editor_log.h')
-rw-r--r-- | editor/editor_log.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_log.h b/editor/editor_log.h index 69a6a0b449..abfc78fdcd 100644 --- a/editor/editor_log.h +++ b/editor/editor_log.h @@ -85,7 +85,7 @@ private: toggle_button->set_text(itos(message_count)); toggle_button->set_tooltip(TTR(p_tooltip)); // Don't tint the icon even when in "pressed" state. - toggle_button->add_theme_color_override("icon_color_pressed", Color(1, 1, 1, 1)); + toggle_button->add_theme_color_override(SNAME("icon_color_pressed"), Color(1, 1, 1, 1)); toggle_button->set_focus_mode(FOCUS_NONE); // When toggled call the callback and pass the MessageType this button is for. toggle_button->connect("toggled", p_toggled_callback, varray(type)); |