diff options
author | Pierre Neidhardt <ambrevar@gmail.com> | 2018-04-10 09:39:23 +0530 |
---|---|---|
committer | Pierre Neidhardt <ambrevar@gmail.com> | 2018-04-10 09:51:54 +0530 |
commit | 9ca1984fac4843635d512da20243c1556e194ec6 (patch) | |
tree | 843c20f6b013e95aae91265af5083f8af1485113 /lisp | |
parent | d77202aed79efad2df3b87fc3db3897474da82b7 (diff) |
* lisp/emms-browser.el: Fix emms-browser-get-track-field-function custom values
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/emms-browser.el | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lisp/emms-browser.el b/lisp/emms-browser.el index bc61873..b381870 100644 --- a/lisp/emms-browser.el +++ b/lisp/emms-browser.el @@ -329,9 +329,8 @@ directory name to determine the artist. This means that soundtracks, compilations and so on don't populate the artist view with lots of 1-track elements." :group 'emms-browser - :type '(choice (function :tag "Simple" 'emms-browser-get-track-field-simple) - (function :tag "Albumartist-sorting" 'emms-browser-get-track-field-albumartist) - (function :tag "Other"))) + :type '(choice (function :tag "Sort by album-artist" emms-browser-get-track-field-albumartist) + (function :tag "Simple" emms-browser-get-track-field-simple))) (defcustom emms-browser-covers '("cover_small" "cover_med" "cover_large") |