diff options
| author | Daniel J. Ramirez | 2017-09-25 23:40:22 -0500 |
|---|---|---|
| committer | Daniel J. Ramirez | 2017-09-25 23:40:22 -0500 |
| commit | 541c4bfd6ebd256a8b2ec321c1276575e7f2d56b (patch) | |
| tree | d73029829e860c8a8eaa6eaea6710cee0047f23d /editor/code_editor.cpp | |
| parent | f577efd47ed2f0aa801155756e4ba5d5ea2d5f2b (diff) | |
| download | godot-541c4bfd6ebd256a8b2ec321c1276575e7f2d56b.tar.gz godot-541c4bfd6ebd256a8b2ec321c1276575e7f2d56b.tar.zst godot-541c4bfd6ebd256a8b2ec321c1276575e7f2d56b.zip | |
Diffstat (limited to 'editor/code_editor.cpp')
| -rw-r--r-- | editor/code_editor.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/code_editor.cpp b/editor/code_editor.cpp index 0e77d2097..a7516c091 100644 --- a/editor/code_editor.cpp +++ b/editor/code_editor.cpp @@ -86,7 +86,7 @@ void FindReplaceBar::_notification(int p_what) { find_prev->set_icon(get_icon("MoveUp", "EditorIcons")); find_next->set_icon(get_icon("MoveDown", "EditorIcons")); hide_button->set_normal_texture(get_icon("Close", "EditorIcons")); - hide_button->set_hover_texture(get_icon("CloseHover", "EditorIcons")); + hide_button->set_hover_texture(get_icon("Close", "EditorIcons")); hide_button->set_pressed_texture(get_icon("Close", "EditorIcons")); } else if (p_what == NOTIFICATION_VISIBILITY_CHANGED) { @@ -97,7 +97,7 @@ void FindReplaceBar::_notification(int p_what) { find_prev->set_icon(get_icon("MoveUp", "EditorIcons")); find_next->set_icon(get_icon("MoveDown", "EditorIcons")); hide_button->set_normal_texture(get_icon("Close", "EditorIcons")); - hide_button->set_hover_texture(get_icon("CloseHover", "EditorIcons")); + hide_button->set_hover_texture(get_icon("Close", "EditorIcons")); hide_button->set_pressed_texture(get_icon("Close", "EditorIcons")); } } |
