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
commit a75f9273b4
Notes: sideshowbarker 2024-07-18 08:59:31 +09:00

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>());