Increase icons to include 128x128 and set global application icon

Fixes #954
This commit is contained in:
Jonas Kvinge
2022-05-19 22:02:35 +02:00
parent a7f27add2d
commit 4a3a379871
4 changed files with 8 additions and 5 deletions

View File

@@ -63,7 +63,7 @@ QIcon IconLoader::Load(const QString &name, const int fixed_size, const int min_
QList<int> sizes;
if (fixed_size == 0) {
sizes << 22 << 32 << 48 << 64;
sizes << 22 << 32 << 48 << 64 << 128;
}
else {
sizes << fixed_size;