diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-03-21 05:24:42 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-03-21 05:25:54 +0100 |
commit | 65348e7dc1ef546a86cffa9b1b8045d2ba841521 (patch) | |
tree | aa8c7b26963228cd96b692b0bb798c7cce498cf4 /Userland | |
parent | 42755e98cf2ce7d10f1899051b63513d442f92ec (diff) | |
download | serenity-65348e7dc1ef546a86cffa9b1b8045d2ba841521.zip |
PNGLoader: Support for color type 2 (RGB triplets) and multiple IDAT chunks.
Diffstat (limited to 'Userland')
-rw-r--r-- | Userland/qs.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/qs.cpp b/Userland/qs.cpp index 148c36b8dc..c6f5440815 100644 --- a/Userland/qs.cpp +++ b/Userland/qs.cpp @@ -15,7 +15,7 @@ int main(int argc, char** argv) } #endif - const char* path = "/res/icons/folder32.png"; + const char* path = "/res/wallpapers/sunset-retro.png"; if (argc > 1) path = argv[1]; @@ -26,7 +26,7 @@ int main(int argc, char** argv) } auto* window = new GWindow; - window->set_title(String::format("qs: %s", path)); + window->set_title(String::format("QuickShow: %s %s", path, bitmap->size().to_string().characters())); window->set_rect(200, 200, bitmap->width(), bitmap->height()); auto* widget = new GWidget; |