diff options
author | Joseph Donofry <joedonofry@gmail.com> | 2021-12-14 17:05:48 -0500 |
---|---|---|
committer | Joseph Donofry <joedonofry@gmail.com> | 2021-12-14 17:05:48 -0500 |
commit | cce5d0534f68c11ba33dbb941570e1bdf2faeaec (patch) | |
tree | 4cc1678d24549900638fbf3a0b7c661cfc9344cc /src | |
parent | Merge pull request #835 from Thulinma/imagewindowrole (diff) | |
download | nheko-cce5d0534f68c11ba33dbb941570e1bdf2faeaec.tar.xz |
Use icns on macOS
Diffstat (limited to 'src')
-rw-r--r-- | src/main.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index 94b58c28..b9134317 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -206,8 +206,9 @@ main(int argc, char *argv[]) return 0; } +#if !defined(Q_OS_MAC) app.setWindowIcon(QIcon::fromTheme("nheko", QIcon{":/logos/nheko.png"})); - +#endif http::init(); createStandardDirectory(QStandardPaths::CacheLocation); |