From c9514365cf8308257cfa1bb4f8b70d7f30a1c522 Mon Sep 17 00:00:00 2001 From: James Elliott Date: Thu, 22 Aug 2024 07:52:50 -0500 Subject: [PATCH] Fix ordering of menu item types Also clean up some inconsistent spacing. --- .../org/deepsymmetry/beatlink/dbserver/Message.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/main/java/org/deepsymmetry/beatlink/dbserver/Message.java b/src/main/java/org/deepsymmetry/beatlink/dbserver/Message.java index f1313a1..4cf81a1 100644 --- a/src/main/java/org/deepsymmetry/beatlink/dbserver/Message.java +++ b/src/main/java/org/deepsymmetry/beatlink/dbserver/Message.java @@ -680,17 +680,17 @@ public enum MenuItemType { * Reports the title and artist of a track, returned when listing playlists or all tracks sorted by artist, * or in their default sort order when the DJ has set this as the default second column for track lists. */ - TRACK_TITLE_AND_ARTIST(0x0704), + TRACK_TITLE_AND_ARTIST (0x0704), /** - * Reports the title and duration of a track, returned when listing playlists or all tracks sorted by time, + * Reports the title and rating of a track, returned when listing playlists or all tracks sorted by rating, * or in their default sort order when the DJ has set this as the default second column for track lists. */ - TRACK_TITLE_AND_TIME(0x0b04), + TRACK_TITLE_AND_RATING (0x0a04), /** - * Reports the title and rating of a track, returned when listing playlists or all tracks sorted by rating, + * Reports the title and duration of a track, returned when listing playlists or all tracks sorted by time, * or in their default sort order when the DJ has set this as the default second column for track lists. */ - TRACK_TITLE_AND_RATING (0x0a04), + TRACK_TITLE_AND_TIME (0x0b04), /** * Reports the title and BPM of a track, returned when listing playlists or all tracks sorted by BPM, * or in their default sort order when the DJ has set this as the default second column for track lists.