Explorar el Código

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

Andreas Kling hace 4 años
padre
commit
f6084d42d9
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      Libraries/LibGUI/AbstractView.cpp

+ 1 - 1
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()