diff options
author | Karol Kosek <krkk@serenityos.org> | 2022-06-03 20:12:50 +0200 |
---|---|---|
committer | Sam Atkins <atkinssj@gmail.com> | 2022-06-16 14:26:55 +0100 |
commit | 54687c63afb177028b8f768b26895b09a03ccaf0 (patch) | |
tree | 543b55e44751a9a9e2daf5d1f6c6339302dbb9d3 /Userland/Applications/PixelPaint/ResizeImageDialog.gml | |
parent | 1759d8f34ed865a5ac059b46e7c2379eda703eef (diff) | |
download | serenity-54687c63afb177028b8f768b26895b09a03ccaf0.zip |
PixelPaint: Add Smooth Pixels scaling option
Diffstat (limited to 'Userland/Applications/PixelPaint/ResizeImageDialog.gml')
-rw-r--r-- | Userland/Applications/PixelPaint/ResizeImageDialog.gml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Userland/Applications/PixelPaint/ResizeImageDialog.gml b/Userland/Applications/PixelPaint/ResizeImageDialog.gml index 038e49212b..f42f488d77 100644 --- a/Userland/Applications/PixelPaint/ResizeImageDialog.gml +++ b/Userland/Applications/PixelPaint/ResizeImageDialog.gml @@ -82,6 +82,12 @@ } @GUI::RadioButton { + name: "smooth_pixels_radio" + text: "Smooth Pixels" + autosize: true + } + + @GUI::RadioButton { name: "bilinear_radio" text: "Bilinear" autosize: true |