diff options
| author | RedMser <redmser.jj2@gmail.com> | 2023-01-22 16:34:56 +0100 |
|---|---|---|
| committer | RedMser <redmser.jj2@gmail.com> | 2023-01-22 16:34:56 +0100 |
| commit | 386f62df968ff48170aca6cf52438c4897cb0007 (patch) | |
| tree | 61d61c8a19c493713d6b73528128b7251f0016e1 /scene | |
| parent | cd031fd31a8fdcdae1e93d1b20caf93230f0ac59 (diff) | |
| download | redot-engine-386f62df968ff48170aca6cf52438c4897cb0007.tar.gz | |
Fix SplitContainer rendering and theming
Diffstat (limited to 'scene')
| -rw-r--r-- | scene/gui/split_container.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/gui/split_container.cpp b/scene/gui/split_container.cpp index ead9550b93..0c0125df76 100644 --- a/scene/gui/split_container.cpp +++ b/scene/gui/split_container.cpp @@ -115,7 +115,7 @@ void SplitContainerDragger::_notification(int p_what) { return; } - Ref<Texture2D> tex = sc->get_theme_icon(SNAME("grabber")); + Ref<Texture2D> tex = sc->_get_grabber_icon(); draw_texture(tex, (get_size() - tex->get_size()) / 2); } break; } |
