diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-12-08 09:16:57 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-08 09:16:57 +0100 |
commit | 5cf178f3bfba50a4fdff185dbfadf2b369368ad8 (patch) | |
tree | 86e43064204cdc02f79bed41f579cd85568820d2 /editor/plugins/sprite_frames_editor_plugin.cpp | |
parent | f48b9367bc77076c80b3855bd25d6190967075fc (diff) | |
parent | 841a9ef820925b6960e92a86f4482d1654e66897 (diff) |
Merge pull request #55694 from KoBeWi/scrollbar_modding_tools
ScrollContainer's scrollbar visibility is now enum
Diffstat (limited to 'editor/plugins/sprite_frames_editor_plugin.cpp')
-rw-r--r-- | editor/plugins/sprite_frames_editor_plugin.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/editor/plugins/sprite_frames_editor_plugin.cpp b/editor/plugins/sprite_frames_editor_plugin.cpp index d455f4618b..316ef7b195 100644 --- a/editor/plugins/sprite_frames_editor_plugin.cpp +++ b/editor/plugins/sprite_frames_editor_plugin.cpp @@ -1238,8 +1238,6 @@ SpriteFramesEditor::SpriteFramesEditor() { split_sheet_preview->connect("gui_input", callable_mp(this, &SpriteFramesEditor::_sheet_preview_input)); split_sheet_scroll = memnew(ScrollContainer); - split_sheet_scroll->set_enable_h_scroll(true); - split_sheet_scroll->set_enable_v_scroll(true); split_sheet_scroll->connect("gui_input", callable_mp(this, &SpriteFramesEditor::_sheet_scroll_input)); split_sheet_panel->add_child(split_sheet_scroll); CenterContainer *cc = memnew(CenterContainer); |