1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-16 20:05:07 +00:00

LibGUI: Call up to the correct base class in GUI::AbstractView

This commit is contained in:
Andreas Kling 2020-10-26 20:37:10 +01:00
parent f57c058c5e
commit f6084d42d9

View file

@ -571,7 +571,7 @@ void AbstractView::keydown_event(KeyEvent& event)
}
}
Widget::keydown_event(event);
ScrollableWidget::keydown_event(event);
}
void AbstractView::cancel_searching()