mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-08 10:36:02 +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
Notes:
sideshowbarker
2024-07-18 08:59:31 +09:00
Author: https://github.com/MacDue
Commit: a75f9273b4
Pull-request: https://github.com/SerenityOS/serenity/pull/17235
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