diff options
author | Andreas Kling <kling@serenityos.org> | 2021-06-15 15:29:04 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-06-16 12:12:39 +0200 |
commit | 8763492e34e0dc4901f784289d751f18063bee71 (patch) | |
tree | d78146e8d2bab9d9485580fdd0e37928f2cf0bf2 /Userland/Applications | |
parent | 2299be474bda4071238f3a4eca061f5447bef228 (diff) | |
download | serenity-8763492e34e0dc4901f784289d751f18063bee71.zip |
PixelPaint: Make main window a little bit taller by default
Diffstat (limited to 'Userland/Applications')
-rw-r--r-- | Userland/Applications/PixelPaint/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Applications/PixelPaint/main.cpp b/Userland/Applications/PixelPaint/main.cpp index 3790ab4856..1aae299a72 100644 --- a/Userland/Applications/PixelPaint/main.cpp +++ b/Userland/Applications/PixelPaint/main.cpp @@ -51,7 +51,7 @@ int main(int argc, char** argv) auto window = GUI::Window::construct(); window->set_title("Pixel Paint"); - window->resize(800, 480); + window->resize(800, 510); window->set_icon(app_icon.bitmap_for_size(16)); auto& main_widget = window->set_main_widget<GUI::Widget>(); |