From a75f9273b4dcb202b705b9e760b2e9609ef0dd81 Mon Sep 17 00:00:00 2001 From: MacDue Date: Sun, 29 Jan 2023 12:28:53 +0000 Subject: [PATCH] PixelPaint: Increase default window height by 10px This stops the clone and gradient tools from being cut off the side bar. --- Userland/Applications/PixelPaint/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Applications/PixelPaint/main.cpp b/Userland/Applications/PixelPaint/main.cpp index 3bfa5bfb3a..0fe155ddb4 100644 --- a/Userland/Applications/PixelPaint/main.cpp +++ b/Userland/Applications/PixelPaint/main.cpp @@ -44,7 +44,7 @@ ErrorOr serenity_main(Main::Arguments arguments) auto window = GUI::Window::construct(); window->set_title("Pixel Paint"); - window->resize(800, 510); + window->resize(800, 520); window->set_icon(app_icon.bitmap_for_size(16)); auto main_widget = TRY(window->set_main_widget());