PaintBrush: Oops, fix typo in ImageEditor::keyup_event()

This commit is contained in:
Andreas Kling 2020-05-13 14:37:12 +02:00
commit 0de3b1c4bf
Notes: sideshowbarker 2024-07-19 06:40:43 +09:00

View file

@ -113,7 +113,7 @@ void ImageEditor::keydown_event(GUI::KeyEvent& event)
void ImageEditor::keyup_event(GUI::KeyEvent& event)
{
if (m_active_tool)
m_active_tool->on_keydown(event);
m_active_tool->on_keyup(event);
}
void ImageEditor::set_active_layer(Layer* layer)