summaryrefslogtreecommitdiffstats
path: root/src/preferences
diff options
context:
space:
mode:
authorPino Toscano <toscano.pino@tiscali.it>2021-05-20 18:30:02 +0200
committerPino Toscano <toscano.pino@tiscali.it>2021-05-20 18:32:38 +0200
commitb4085f9ab7adcdecce3af5615b4325ce2b97e95a (patch)
tree96c69953249865f9b0d1594156045997127ae537 /src/preferences
parentc788696417c1dd9adf261b3fbd5237a6f7830127 (diff)
Rename app SVG icon to 'mixxx'
As suggested by Daniel Schürmann, rename the main application icon to 'mixxx', updating all the reference to it in both sources and additional metadata. There are few XDG icon themes that provide an icon for mixxx, and they all seem to provide already a 'mixxx' icon, so they will not see any missing icon.
Diffstat (limited to 'src/preferences')
-rw-r--r--src/preferences/upgrade.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/preferences/upgrade.cpp b/src/preferences/upgrade.cpp
index d6e13b0693..234bd29e8f 100644
--- a/src/preferences/upgrade.cpp
+++ b/src/preferences/upgrade.cpp
@@ -450,7 +450,7 @@ UserSettingsPointer Upgrade::versionUpgrade(const QString& settingsPath) {
bool Upgrade::askReScanLibrary() {
QMessageBox msgBox;
- msgBox.setIconPixmap(QPixmap(":/images/mixxx_icon.svg"));
+ msgBox.setIconPixmap(QPixmap(":/images/mixxx.svg"));
msgBox.setWindowTitle(QMessageBox::tr("Upgrading Mixxx"));
msgBox.setText(QMessageBox::tr("Mixxx now supports displaying cover art.\n"
"Do you want to scan your library for cover files now?"));
@@ -482,7 +482,7 @@ bool Upgrade::askReanalyzeBeats() {
QString generateNew = QMessageBox::tr("Generate New Beatgrids");
QMessageBox msgBox;
- msgBox.setIconPixmap(QPixmap(":/images/mixxx_icon.svg"));
+ msgBox.setIconPixmap(QPixmap(":/images/mixxx.svg"));
msgBox.setWindowTitle(windowTitle);
msgBox.setText(QString("<html><h2>%1</h2><p>%2</p><p>%3</p><p>%4</p></html>")
.arg(mainHeading, paragraph1, paragraph2, paragraph3));