Add icons to extras: hypnotoad, kittens, enterprise
Fixes totally critical bug #1601
@ -37,6 +37,7 @@
|
||||
<file>icons/22x22/edit-redo.png</file>
|
||||
<file>icons/22x22/edit-rename.png</file>
|
||||
<file>icons/22x22/edit-undo.png</file>
|
||||
<file>icons/22x22/enterprise.png</file>
|
||||
<file>icons/22x22/folder-new.png</file>
|
||||
<file>icons/22x22/folder.png</file>
|
||||
<file>icons/22x22/folder-sound.png</file>
|
||||
@ -48,8 +49,10 @@
|
||||
<file>icons/22x22/go-up.png</file>
|
||||
<file>icons/22x22/help-about.png</file>
|
||||
<file>icons/22x22/help-hint.png</file>
|
||||
<file>icons/22x22/hypnotoad.png</file>
|
||||
<file>icons/22x22/input-keyboard.png</file>
|
||||
<file>icons/22x22/ipodtouchicon.png</file>
|
||||
<file>icons/22x22/kittens.png</file>
|
||||
<file>icons/22x22/list-add.png</file>
|
||||
<file>icons/22x22/list-remove.png</file>
|
||||
<file>icons/22x22/mail-message.png</file>
|
||||
@ -113,6 +116,7 @@
|
||||
<file>icons/32x32/edit-redo.png</file>
|
||||
<file>icons/32x32/edit-rename.png</file>
|
||||
<file>icons/32x32/edit-undo.png</file>
|
||||
<file>icons/32x32/enterprise.png</file>
|
||||
<file>icons/32x32/folder-new.png</file>
|
||||
<file>icons/32x32/folder.png</file>
|
||||
<file>icons/32x32/folder-sound.png</file>
|
||||
@ -124,8 +128,10 @@
|
||||
<file>icons/32x32/go-up.png</file>
|
||||
<file>icons/32x32/help-about.png</file>
|
||||
<file>icons/32x32/help-hint.png</file>
|
||||
<file>icons/32x32/hypnotoad.png</file>
|
||||
<file>icons/32x32/input-keyboard.png</file>
|
||||
<file>icons/32x32/ipodtouchicon.png</file>
|
||||
<file>icons/32x32/kittens.png</file>
|
||||
<file>icons/32x32/list-add.png</file>
|
||||
<file>icons/32x32/list-remove.png</file>
|
||||
<file>icons/32x32/mail-message.png</file>
|
||||
@ -189,6 +195,7 @@
|
||||
<file>icons/48x48/edit-redo.png</file>
|
||||
<file>icons/48x48/edit-rename.png</file>
|
||||
<file>icons/48x48/edit-undo.png</file>
|
||||
<file>icons/48x48/enterprise.png</file>
|
||||
<file>icons/48x48/folder-new.png</file>
|
||||
<file>icons/48x48/folder.png</file>
|
||||
<file>icons/48x48/folder-sound.png</file>
|
||||
@ -200,8 +207,10 @@
|
||||
<file>icons/48x48/go-up.png</file>
|
||||
<file>icons/48x48/help-about.png</file>
|
||||
<file>icons/48x48/help-hint.png</file>
|
||||
<file>icons/48x48/hypnotoad.png</file>
|
||||
<file>icons/48x48/input-keyboard.png</file>
|
||||
<file>icons/48x48/ipodtouchicon.png</file>
|
||||
<file>icons/48x48/kittens.png</file>
|
||||
<file>icons/48x48/list-add.png</file>
|
||||
<file>icons/48x48/list-remove.png</file>
|
||||
<file>icons/48x48/mail-message.png</file>
|
||||
|
BIN
data/icons/22x22/enterprise.png
Normal file
After Width: | Height: | Size: 881 B |
BIN
data/icons/22x22/hypnotoad.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
data/icons/22x22/kittens.png
Normal file
After Width: | Height: | Size: 1002 B |
BIN
data/icons/32x32/enterprise.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
BIN
data/icons/32x32/hypnotoad.png
Normal file
After Width: | Height: | Size: 2.4 KiB |
BIN
data/icons/32x32/kittens.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
data/icons/48x48/enterprise.png
Normal file
After Width: | Height: | Size: 2.7 KiB |
BIN
data/icons/48x48/hypnotoad.png
Normal file
After Width: | Height: | Size: 4.0 KiB |
BIN
data/icons/48x48/kittens.png
Normal file
After Width: | Height: | Size: 2.4 KiB |
@ -322,6 +322,9 @@ MainWindow::MainWindow(Application* app, SystemTrayIcon* tray_icon, OSD* osd,
|
||||
ui_->action_save_playlist->setIcon(IconLoader::Load("document-save"));
|
||||
ui_->action_full_library_scan->setIcon(IconLoader::Load("view-refresh"));
|
||||
ui_->action_rain->setIcon(IconLoader::Load("weather-showers-scattered"));
|
||||
ui_->action_hypnotoad->setIcon(IconLoader::Load("hypnotoad"));
|
||||
ui_->action_kittens->setIcon(IconLoader::Load("kittens"));
|
||||
ui_->action_enterprise->setIcon(IconLoader::Load("enterprise"));
|
||||
|
||||
// File view connections
|
||||
connect(file_view_, SIGNAL(AddToPlaylist(QMimeData*)),
|
||||
|