diff options
author | Andreas Kling <kling@serenityos.org> | 2022-03-31 18:23:24 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-03-31 18:25:06 +0200 |
commit | 3ab7388754315fe40e64c4a3aafcf712f4f06a6f (patch) | |
tree | 883a25f6537f4f08bdddc7919ed63751cff83dfe /Userland/Applications/PixelPaint | |
parent | 7047a5ca595a7c88d2226a6fbc53501764328c14 (diff) | |
download | serenity-3ab7388754315fe40e64c4a3aafcf712f4f06a6f.zip |
PixelPaint: Draw layer thumbnails with bilinear filtering
This makes them look a little nicer than basic nearest-neighbor.
Diffstat (limited to 'Userland/Applications/PixelPaint')
-rw-r--r-- | Userland/Applications/PixelPaint/LayerListWidget.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Applications/PixelPaint/LayerListWidget.cpp b/Userland/Applications/PixelPaint/LayerListWidget.cpp index d4bc1af8dd..49fbde1e60 100644 --- a/Userland/Applications/PixelPaint/LayerListWidget.cpp +++ b/Userland/Applications/PixelPaint/LayerListWidget.cpp @@ -142,10 +142,10 @@ void LayerListWidget::paint_event(GUI::PaintEvent& event) } painter.draw_rect(adjusted_rect, palette().color(ColorRole::BaseText)); - painter.draw_scaled_bitmap(inner_thumbnail_rect, layer.display_bitmap(), layer.display_bitmap().rect()); + painter.draw_scaled_bitmap(inner_thumbnail_rect, layer.display_bitmap(), layer.display_bitmap().rect(), 1.0f, Gfx::Painter::ScalingMode::BilinearBlend); if (is_masked) - painter.draw_scaled_bitmap(inner_mask_thumbnail_rect, *layer.mask_bitmap(), layer.mask_bitmap()->rect()); + painter.draw_scaled_bitmap(inner_mask_thumbnail_rect, *layer.mask_bitmap(), layer.mask_bitmap()->rect(), 1.0f, Gfx::Painter::ScalingMode::BilinearBlend); Color border_color = layer.is_visible() ? palette().color(ColorRole::BaseText) : palette().color(ColorRole::DisabledText); |