summaryrefslogtreecommitdiff
path: root/Applications
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-04-18 02:30:35 +0200
committerAndreas Kling <awesomekling@gmail.com>2019-04-18 02:30:35 +0200
commit36a6c10b09e67f8f94c8696021c1d586b5856b5a (patch)
tree1ce9371c036a65f7d111b1f3bae0055a654ebebc /Applications
parentc7d6e568baae9b7a925119ec0767cb9e22dd94ca (diff)
downloadserenity-36a6c10b09e67f8f94c8696021c1d586b5856b5a.zip
FontEditor: Add a window icon.
Diffstat (limited to 'Applications')
-rw-r--r--Applications/FontEditor/main.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/Applications/FontEditor/main.cpp b/Applications/FontEditor/main.cpp
index cc4010d0b8..c250c77fa3 100644
--- a/Applications/FontEditor/main.cpp
+++ b/Applications/FontEditor/main.cpp
@@ -31,5 +31,6 @@ int main(int argc, char** argv)
window->set_main_widget(font_editor);
window->set_should_exit_event_loop_on_close(true);
window->show();
+ window->set_icon_path("/res/icons/16x16/app-font-editor.png");
return app.exec();
}