diff --git a/Applications/ChanViewer/main.cpp b/Applications/ChanViewer/main.cpp index 917df59be0..8efa6c14ea 100644 --- a/Applications/ChanViewer/main.cpp +++ b/Applications/ChanViewer/main.cpp @@ -1,4 +1,5 @@ #include "ThreadCatalogModel.h" +#include #include #include #include @@ -11,6 +12,7 @@ int main(int argc, char** argv) auto* window = new GWindow; window->set_title("ChanViewer"); window->set_rect(100, 100, 640, 480); + window->set_icon(load_png("/res/icons/16x16/app-chanviewer.png")); auto* widget = new GWidget; window->set_main_widget(widget); diff --git a/Base/res/icons/16x16/app-chanviewer.png b/Base/res/icons/16x16/app-chanviewer.png new file mode 100644 index 0000000000..e1dd553e74 Binary files /dev/null and b/Base/res/icons/16x16/app-chanviewer.png differ