diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-08-05 06:59:47 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-08-05 07:00:06 +0200 |
commit | a416390622b21f66caaa0e1353993d580b2b4a6d (patch) | |
tree | d3473841da1ae867bac4c04f6550e5346f438420 /Applications/ChanViewer/main.cpp | |
parent | 103c2749ce8f6d519b552881657fb3c60a615ff6 (diff) | |
download | serenity-a416390622b21f66caaa0e1353993d580b2b4a6d.zip |
ChanViewer: Show thread subjects in the catalog view
Diffstat (limited to 'Applications/ChanViewer/main.cpp')
-rw-r--r-- | Applications/ChanViewer/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Applications/ChanViewer/main.cpp b/Applications/ChanViewer/main.cpp index 8efa6c14ea..fe4a8bf422 100644 --- a/Applications/ChanViewer/main.cpp +++ b/Applications/ChanViewer/main.cpp @@ -11,7 +11,7 @@ int main(int argc, char** argv) auto* window = new GWindow; window->set_title("ChanViewer"); - window->set_rect(100, 100, 640, 480); + window->set_rect(100, 100, 800, 500); window->set_icon(load_png("/res/icons/16x16/app-chanviewer.png")); auto* widget = new GWidget; |