diff options
author | Andreas Kling <kling@serenityos.org> | 2020-08-21 21:04:42 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-08-21 21:16:13 +0200 |
commit | 84a272ad2a049468e89566bd7416ce4e3553f4c7 (patch) | |
tree | 697a4d51b4523bedd26f3105d02d01eb696a11aa | |
parent | 7703dad36be85cb9c7fcffad2f629ce04c7bb7e7 (diff) | |
download | serenity-84a272ad2a049468e89566bd7416ce4e3553f4c7.zip |
ThemeEditor: Set window icon and title
-rw-r--r-- | Applications/ThemeEditor/main.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Applications/ThemeEditor/main.cpp b/Applications/ThemeEditor/main.cpp index 0b6a762038..35bab0270f 100644 --- a/Applications/ThemeEditor/main.cpp +++ b/Applications/ThemeEditor/main.cpp @@ -82,5 +82,7 @@ int main(int argc, char** argv) window->resize(500, 500); window->show(); + window->set_title("Theme Editor"); + window->set_icon(Gfx::Bitmap::load_from_file("/res/icons/16x16/themes.png")); return app->exec(); } |