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:
parent
141e5d6f20
commit
a75f9273b4
1 changed files with 1 additions and 1 deletions
|
@ -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>());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue