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

LibGfx: Add painting transparency grids to StylePainter

This commit is contained in:
Tibor Nagy 2020-09-25 16:33:12 +02:00 committed by Andreas Kling
parent 7d83665635
commit 7ab04ea31a
4 changed files with 13 additions and 0 deletions

View file

@ -78,4 +78,9 @@ void StylePainter::paint_check_box(Painter& painter, const IntRect& rect, const
current().paint_check_box(painter, rect, palette, is_enabled, is_checked, is_being_pressed);
}
void StylePainter::paint_transparency_grid(Painter& painter, const IntRect& rect, const Palette& palette)
{
current().paint_transparency_grid(painter, rect, palette);
}
}