소스 검색

Fixed issue where panels in sprite frames editor couldn't be resized

Igor Kordiukiewicz 3 년 전
부모
커밋
fa3d53ab4e
2개의 변경된 파일0개의 추가작업 그리고 4개의 파일을 삭제
  1. 0 3
      editor/plugins/sprite_frames_editor_plugin.cpp
  2. 0 1
      editor/plugins/sprite_frames_editor_plugin.h

+ 0 - 3
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;

+ 0 - 1
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: