From 0de3b1c4bf357ff9b7f1b833aa8cf98c2a0bf0fc Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Wed, 13 May 2020 14:37:12 +0200 Subject: [PATCH] PaintBrush: Oops, fix typo in ImageEditor::keyup_event() --- Applications/PaintBrush/ImageEditor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Applications/PaintBrush/ImageEditor.cpp b/Applications/PaintBrush/ImageEditor.cpp index 4124108a96..87f9aab57d 100644 --- a/Applications/PaintBrush/ImageEditor.cpp +++ b/Applications/PaintBrush/ImageEditor.cpp @@ -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)