diff options
author | Andreas Kling <kling@serenityos.org> | 2020-05-13 22:12:03 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-05-13 22:12:03 +0200 |
commit | b25c6ab8848e8ba365cf54d8ab0c3b4551d988f4 (patch) | |
tree | 61fb6f013b16032c651f4955389741045926a753 /Applications | |
parent | 720ebee1beafe7b8d2a3f579aed624d442175b83 (diff) | |
download | serenity-b25c6ab8848e8ba365cf54d8ab0c3b4551d988f4.zip |
PaintBrush: Tweak initial main window size
Diffstat (limited to 'Applications')
-rw-r--r-- | Applications/PaintBrush/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Applications/PaintBrush/main.cpp b/Applications/PaintBrush/main.cpp index 19d613c6ff..e1dd6b5c71 100644 --- a/Applications/PaintBrush/main.cpp +++ b/Applications/PaintBrush/main.cpp @@ -61,7 +61,7 @@ int main(int argc, char** argv) auto window = GUI::Window::construct(); window->set_title("PaintBrush"); - window->set_rect(100, 100, 640, 480); + window->set_rect(40, 100, 950, 570); window->set_icon(Gfx::Bitmap::load_from_file("/res/icons/16x16/app-paintbrush.png")); auto& horizontal_container = window->set_main_widget<GUI::Widget>(); |