From f6084d42d9b9a946469aa768946d80aec92d8954 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Mon, 26 Oct 2020 20:37:10 +0100 Subject: [PATCH] LibGUI: Call up to the correct base class in GUI::AbstractView --- Libraries/LibGUI/AbstractView.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Libraries/LibGUI/AbstractView.cpp b/Libraries/LibGUI/AbstractView.cpp index a60f404e31..fa1eed45b2 100644 --- a/Libraries/LibGUI/AbstractView.cpp +++ b/Libraries/LibGUI/AbstractView.cpp @@ -571,7 +571,7 @@ void AbstractView::keydown_event(KeyEvent& event) } } - Widget::keydown_event(event); + ScrollableWidget::keydown_event(event); } void AbstractView::cancel_searching()