1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 08:38:12 +00:00

PaintBrush: Tools can receive KeyUp events

This commit is contained in:
Zyper 2019-12-17 12:57:58 +01:00 committed by Andreas Kling
parent 7301db4f9a
commit b185c7f58a
3 changed files with 9 additions and 0 deletions

View file

@ -103,6 +103,13 @@ void PaintableWidget::keydown_event(GKeyEvent& event)
GWidget::keydown_event(event);
}
void PaintableWidget::keyup_event(GKeyEvent& event)
{
if (m_tool)
m_tool->on_keyup(event);
GWidget::keyup_event(event);
}
void PaintableWidget::set_primary_color(Color color)
{
if (m_primary_color == color)