1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 03:07:44 +00:00

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

This commit is contained in:
Andreas Kling 2020-05-13 14:37:12 +02:00
parent d045972559
commit 0de3b1c4bf

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)