diff options
| author | Rémi Verschelde <rverschelde@gmail.com> | 2022-11-20 15:37:37 +0100 |
|---|---|---|
| committer | Rémi Verschelde <rverschelde@gmail.com> | 2022-11-20 15:37:37 +0100 |
| commit | 855402dfeefcf46a4e10d8a6aaa59f677e9b1f44 (patch) | |
| tree | 8529a53231251caadc3d49b965216890dee2985b /editor/plugins/bone_map_editor_plugin.cpp | |
| parent | ead18458c76ccabf0dc57ea869679b462762e9ef (diff) | |
| parent | f6714858bfcfd22e481629e096c0e7293aed8cd9 (diff) | |
| download | redot-engine-855402dfeefcf46a4e10d8a6aaa59f677e9b1f44.tar.gz | |
Merge pull request #68904 from aaronfranke/texture-methods
Rename TextureButton set_*_texture methods to set_texture_*
Diffstat (limited to 'editor/plugins/bone_map_editor_plugin.cpp')
| -rw-r--r-- | editor/plugins/bone_map_editor_plugin.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/plugins/bone_map_editor_plugin.cpp b/editor/plugins/bone_map_editor_plugin.cpp index c834e0e93e..22c30c9af8 100644 --- a/editor/plugins/bone_map_editor_plugin.cpp +++ b/editor/plugins/bone_map_editor_plugin.cpp @@ -38,9 +38,9 @@ void BoneMapperButton::fetch_textures() { if (selected) { - set_normal_texture(get_theme_icon(SNAME("BoneMapperHandleSelected"), SNAME("EditorIcons"))); + set_texture_normal(get_theme_icon(SNAME("BoneMapperHandleSelected"), SNAME("EditorIcons"))); } else { - set_normal_texture(get_theme_icon(SNAME("BoneMapperHandle"), SNAME("EditorIcons"))); + set_texture_normal(get_theme_icon(SNAME("BoneMapperHandle"), SNAME("EditorIcons"))); } set_offset(SIDE_LEFT, 0); set_offset(SIDE_RIGHT, 0); |
