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

LibGUI: Minor fixes.

This commit is contained in:
Andreas Kling 2019-01-20 08:16:02 +01:00
parent a9e60fc800
commit d4cce87dbc
3 changed files with 1 additions and 9 deletions

View file

@ -26,10 +26,3 @@ void GLabel::paintEvent(GPaintEvent&)
if (!text().is_empty())
painter.draw_text({ 4, 4, width(), height() }, text(), Painter::TextAlignment::TopLeft, foregroundColor());
}
void GLabel::mouseMoveEvent(GMouseEvent& event)
{
dbgprintf("GLabel::mouseMoveEvent: x=%d, y=%d\n", event.x(), event.y());
GWidget::mouseMoveEvent(event);
}