Increase icons to include 128x128 and set global application icon
Fixes #954
This commit is contained in:
parent
a7f27add2d
commit
4a3a379871
|
@ -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;
|
||||
|
|
|
@ -346,6 +346,8 @@ MainWindow::MainWindow(Application *app, std::shared_ptr<SystemTrayIcon> tray_ic
|
|||
// Initialize the UI
|
||||
ui_->setupUi(this);
|
||||
|
||||
setWindowIcon(IconLoader::Load("strawberry"));
|
||||
|
||||
album_cover_choice_controller_->Init(app);
|
||||
|
||||
ui_->multi_loading_indicator->SetTaskManager(app_->task_manager());
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
</property>
|
||||
<property name="windowIcon">
|
||||
<iconset resource="../../data/icons.qrc">
|
||||
<normaloff>:/icons/64x64/strawberry.png</normaloff>:/icons/64x64/strawberry.png</iconset>
|
||||
<normaloff>:/icons/128x128/strawberry.png</normaloff>:/icons/128x128/strawberry.png</iconset>
|
||||
</property>
|
||||
<widget class="QWidget" name="centralWidget">
|
||||
<layout class="QVBoxLayout" name="layout_centralWidget">
|
||||
|
@ -749,9 +749,9 @@
|
|||
</property>
|
||||
</action>
|
||||
<action name="action_save_all_playlists">
|
||||
<property name="text">
|
||||
<string>&Save all playlists</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>&Save all playlists</string>
|
||||
</property>
|
||||
</action>
|
||||
<action name="action_next_playlist">
|
||||
<property name="text">
|
||||
|
|
|
@ -193,6 +193,7 @@ int main(int argc, char *argv[]) {
|
|||
return 0;
|
||||
}
|
||||
QGuiApplication::setQuitOnLastWindowClosed(false);
|
||||
QGuiApplication::setWindowIcon(IconLoader::Load("strawberry"));
|
||||
|
||||
#if defined(USE_BUNDLE) && (defined(Q_OS_LINUX) || defined(Q_OS_MACOS))
|
||||
qLog(Debug) << "Looking for resources in" << QCoreApplication::applicationDirPath() + "/" + USE_BUNDLE_DIR;
|
||||
|
|
Loading…
Reference in New Issue