diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-06-11 20:37:58 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-06-11 20:37:58 +0200 |
commit | 70564a78b2865c0b078e449259ea030601858f1d (patch) | |
tree | 7dd86033c6961033c4ed861fc65a1273d4410592 /Applications/PaintBrush/main.cpp | |
parent | 1372f10dda8dcac10fd1961ec9e7707778fa0bfc (diff) | |
download | serenity-70564a78b2865c0b078e449259ea030601858f1d.zip |
PaintBrush: Tidy up the UI a bit. Add some more colors.
Diffstat (limited to 'Applications/PaintBrush/main.cpp')
-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 dfaa70625b..4489c78dff 100644 --- a/Applications/PaintBrush/main.cpp +++ b/Applications/PaintBrush/main.cpp @@ -13,7 +13,7 @@ int main(int argc, char** argv) auto* window = new GWindow; window->set_title("PaintBrush"); - window->set_rect(100, 100, 600, 432); + window->set_rect(100, 100, 600, 434); auto* main_widget = new GWidget(nullptr); window->set_main_widget(main_widget); |