Skip to content

Commit

Permalink
Merge pull request #4541 from uklotzde/UpdateReplayGain
Browse files Browse the repository at this point in the history
WTrackMenu: Add missing feature to all features enum variant
  • Loading branch information
Holzhaus authored Nov 24, 2021
2 parents 809e4bb + 6b015fb commit 365d0a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/widget/wtrackmenu.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class WTrackMenu : public QMenu {
Q_OBJECT
public:
enum Feature {
AutoDJ = 1,
AutoDJ = 1 << 0,
// The loadTrackToPlayer signal emitted from this class must be handled to make LoadTo work.
LoadTo = 1 << 1,
Playlist = 1 << 2,
Expand All @@ -53,7 +53,7 @@ class WTrackMenu : public QMenu {
TrackModelFeatures = Remove | HideUnhidePurge,
All = AutoDJ | LoadTo | Playlist | Crate | Remove | Metadata | Reset |
BPM | Color | HideUnhidePurge | RemoveFromDisk | FileBrowser |
Properties | SearchRelated
Properties | SearchRelated | UpdateReplayGain
};
Q_DECLARE_FLAGS(Features, Feature)

Expand Down

0 comments on commit 365d0a1

Please sign in to comment.