summaryrefslogtreecommitdiff
path: root/editor/plugins
diff options
context:
space:
mode:
authorIgor Kordiukiewicz <igorkordiukiewicz@gmail.com>2022-03-01 23:39:03 +0100
committerIgor Kordiukiewicz <igorkordiukiewicz@gmail.com>2022-04-26 02:34:18 +0200
commitfa3d53ab4e6a49c588fb39cc870c9cea61d8c51f (patch)
treeb7472368c4e8fd03ab7f6d1d8aa90fb0c85f6394 /editor/plugins
parent8c2b9801fd7046beb431b299eb31b3633287fa65 (diff)
Fixed issue where panels in sprite frames editor couldn't be resized
Diffstat (limited to 'editor/plugins')
-rw-r--r--editor/plugins/sprite_frames_editor_plugin.cpp3
-rw-r--r--editor/plugins/sprite_frames_editor_plugin.h1
2 files changed, 0 insertions, 4 deletions
diff --git a/editor/plugins/sprite_frames_editor_plugin.cpp b/editor/plugins/sprite_frames_editor_plugin.cpp
index 27160f8c86..29beb8be84 100644
--- a/editor/plugins/sprite_frames_editor_plugin.cpp
+++ b/editor/plugins/sprite_frames_editor_plugin.cpp
@@ -48,9 +48,6 @@ static void _draw_shadowed_line(Control *p_control, const Point2 &p_from, const
p_control->draw_line(p_from + p_shadow_offset, p_from + p_size + p_shadow_offset, p_shadow_color);
}
-void SpriteFramesEditor::gui_input(const Ref<InputEvent> &p_event) {
-}
-
void SpriteFramesEditor::_open_sprite_sheet() {
file_split_sheet->clear_filters();
List<String> extensions;
diff --git a/editor/plugins/sprite_frames_editor_plugin.h b/editor/plugins/sprite_frames_editor_plugin.h
index 9a00fe5771..d31ce84d09 100644
--- a/editor/plugins/sprite_frames_editor_plugin.h
+++ b/editor/plugins/sprite_frames_editor_plugin.h
@@ -170,7 +170,6 @@ class SpriteFramesEditor : public HSplitContainer {
protected:
void _notification(int p_what);
- virtual void gui_input(const Ref<InputEvent> &p_event) override;
static void _bind_methods();
public: