summaryrefslogtreecommitdiff
path: root/Userland/Applications
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2021-06-15 15:29:04 +0200
committerAndreas Kling <kling@serenityos.org>2021-06-16 12:12:39 +0200
commit8763492e34e0dc4901f784289d751f18063bee71 (patch)
treed78146e8d2bab9d9485580fdd0e37928f2cf0bf2 /Userland/Applications
parent2299be474bda4071238f3a4eca061f5447bef228 (diff)
downloadserenity-8763492e34e0dc4901f784289d751f18063bee71.zip
PixelPaint: Make main window a little bit taller by default
Diffstat (limited to 'Userland/Applications')
-rw-r--r--Userland/Applications/PixelPaint/main.cpp2
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>();