1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-01 10:48:13 +00:00

PixelPaint: Increase default window height by 10px

This stops the clone and gradient tools from being cut off the side
bar.
This commit is contained in:
MacDue 2023-01-29 12:28:53 +00:00 committed by Jelle Raaijmakers
parent 141e5d6f20
commit a75f9273b4

View file

@ -44,7 +44,7 @@ ErrorOr<int> 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<PixelPaint::MainWidget>());