@@ -75,15 +75,21 @@ void DlgTrackInfo::init(){
75
75
76
76
// Cover art actions
77
77
// change cover art location
78
- QAction* changeCover = new QAction (tr (" &Change" ), this );
78
+ QAction* changeCover = new QAction (
79
+ QIcon (" :/images/library/ic_cover_change.png" ),
80
+ tr (" &Change" ), this );
79
81
connect (changeCover, SIGNAL (triggered ()),
80
82
this , SLOT (slotChangeCoverArt ()));
81
83
// unset cover art - load default
82
- QAction* unsetCover = new QAction (tr (" &Unset" ), this );
84
+ QAction* unsetCover = new QAction (
85
+ QIcon (" :/images/library/ic_cover_unset.png" ),
86
+ tr (" &Unset" ), this );
83
87
connect (unsetCover, SIGNAL (triggered ()),
84
88
this , SLOT (slotUnsetCoverArt ()));
85
89
// reload just cover art using the search algorithm (in CoverArtCache)
86
- QAction* reloadCover = new QAction (tr (" &Reload" ), this );
90
+ QAction* reloadCover = new QAction (
91
+ QIcon (" :/images/library/ic_cover_reload.png" ),
92
+ tr (" &Reload" ), this );
87
93
connect (reloadCover, SIGNAL (triggered ()),
88
94
this , SLOT (slotReloadCover ()));
89
95
// Cover art popup menu
0 commit comments