mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-12-09 13:15:18 -05:00
Add Rockbox Utility SVG window icon on Linux.
Create a svg version of the clef icon for Rockbox Utility and set it as window icon on Linux; icon created from the svg logo in the manual. Addresses FS#11094. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25385 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
d175874821
commit
ebae474893
3 changed files with 84 additions and 0 deletions
|
|
@ -77,6 +77,11 @@ RbUtilQt::RbUtilQt(QWidget *parent) : QMainWindow(parent)
|
|||
HttpGet::setGlobalUserAgent("rbutil/"VERSION);
|
||||
// init startup & autodetection
|
||||
ui.setupUi(this);
|
||||
#if defined(Q_OS_LINUX)
|
||||
QIcon windowIcon(":/icons/rockbox-clef.svg");
|
||||
this->setWindowIcon(windowIcon);
|
||||
#endif
|
||||
|
||||
downloadInfo();
|
||||
|
||||
m_gotInfo = false;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue