[gnome-shell] mpris: Switch text in title and body



commit d318bf539dffad7c02f63e0cddf8cca68e687049
Author: Harry Míchal <harrymichal seznam cz>
Date:   Sat Oct 24 15:07:10 2020 +0000

    mpris: Switch text in title and body
    
    Most media players have a media player that shows the title of a song
    and artists in the song. In those media players the title is
    highlighted (bold text) and the list of artists is under the title.
    Shell does the exact opposite in the player in the notification area.
    
    Example media players: Spotify, Rhythmbox, GNOME Music
    
    https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/1480

 js/ui/mpris.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/js/ui/mpris.js b/js/ui/mpris.js
index 3650c577a3..4e541d8a03 100644
--- a/js/ui/mpris.js
+++ b/js/ui/mpris.js
@@ -66,8 +66,8 @@ class MediaMessage extends MessageList.Message {
     }
 
     _update() {
-        this.setTitle(this._player.trackArtists.join(', '));
-        this.setBody(this._player.trackTitle);
+        this.setTitle(this._player.trackTitle);
+        this.setBody(this._player.trackArtists.join(', '));
 
         if (this._player.trackCoverUrl) {
             let file = Gio.File.new_for_uri(this._player.trackCoverUrl);


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]