Skip to content

Commit

Permalink
Update favicons.
Browse files Browse the repository at this point in the history
  • Loading branch information
bohning committed Sep 14, 2024
1 parent 4639044 commit 859e442
Show file tree
Hide file tree
Showing 10 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/QUMainWindow.ui
Original file line number Diff line number Diff line change
Expand Up @@ -615,7 +615,7 @@ Tasks</string>
</property>
<property name="icon">
<iconset resource="resources/UltraStar-Manager.qrc">
<normaloff>:/faviconDiscogs.ico</normaloff>:/faviconDiscogs.ico</iconset>
<normaloff>:/faviconDiscogs.png</normaloff>:/faviconDiscogs.png</iconset>
</property>
<property name="iconSize">
<size>
Expand Down
4 changes: 2 additions & 2 deletions src/resources/UltraStar-Manager.qrc
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,11 @@
<file>faviconGoogle.ico</file>
<file>faviconUSDB.ico</file>
<file>MediaInfo.png</file>
<file>faviconYoutube.ico</file>
<file>faviconAllMusic.ico</file>
<file>faviconDiscogs.ico</file>
<file>faviconFanart.ico</file>
<file>faviconHitparade.png</file>
<file>faviconDiscogs.png</file>
<file>faviconYoutube.png</file>
</qresource>
<qresource prefix="/bullets">
<file>arrow_down_small.png</file>
Expand Down
Binary file modified src/resources/faviconAllMusic.ico
Binary file not shown.
Binary file removed src/resources/faviconDiscogs.ico
Binary file not shown.
Binary file added src/resources/faviconDiscogs.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/resources/faviconGoogle.ico
Binary file not shown.
Binary file removed src/resources/faviconYoutube.ico
Binary file not shown.
Binary file added src/resources/faviconYoutube.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/songtree/QUSongTree.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1370,7 +1370,7 @@ QMenu* QUSongTree::itemMenu(QUSongItem *item) {
menu->addAction(QIcon(":/faviconFanart.ico"),tr("Search for artwork on Fanart..."), this, SLOT(searchForArtworkOnFanart()));
menu->addAction(QIcon(":/faviconGoogle.ico"),tr("Search for background on Google Images..."), this, SLOT(searchForBackgroundOnGoogleImages()));
menu->addAction(QIcon(":/faviconGoogle.ico"),tr("Search for video on Google Video..."), this, SLOT(searchForVideoOnGoogleVideo()));
menu->addAction(QIcon(":/faviconYoutube.ico"),tr("Search for video on Youtube..."), this, SLOT(searchForVideoOnYoutube()));
menu->addAction(QIcon(":/faviconYoutube.png"),tr("Search for video on Youtube..."), this, SLOT(searchForVideoOnYoutube()));
menu->addAction(QIcon(":/faviconHitparade.png"),tr("Look up on Hitparade.ch..."), this, SLOT(lookUpOnHitparade()));
menu->addAction(QIcon(":/faviconUSDB.ico"),tr("Look up on USDB..."), this, SLOT(lookUpOnUSDB()));

Expand Down
2 changes: 1 addition & 1 deletion src/webinfo/QUWebInfoTree.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ QUWebInfoTree::QUWebInfoTree(QWidget *parent): QTreeWidget(parent) {
_discogs = new QTreeWidgetItem();
this->addTopLevelItem(_discogs);

_discogs->setIcon(0, QIcon(":/faviconDiscogs.ico"));
_discogs->setIcon(0, QIcon(":/faviconDiscogs.png"));
_discogs->setText(0, tr("discogs.com"));
_discogs->setFlags(Qt::ItemIsEnabled);
_discogs->setForeground(0, Qt::darkGray);
Expand Down

0 comments on commit 859e442

Please sign in to comment.