branch: externals/listen commit 2d4e2d3b98ac927c34b03fb0b3b779163370ed93 Author: Adam Porter <a...@alphapapa.net> Commit: Adam Porter <a...@alphapapa.net>
Fix: (listen-library) Start with point at beginning --- README.org | 1 + listen-library.el | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/README.org b/README.org index 4f9fe36ecf..8765ecd117 100644 --- a/README.org +++ b/README.org @@ -90,6 +90,7 @@ Use the command ~listen~ to show the Transient menu. From there, it is--hopeful *Fixes* + When reverting a queue's tracks from disk, re-detect the currently playing track by filename. + Queue bookmark handler. ++ Open library buffer with point at beginning. ** v0.6 diff --git a/listen-library.el b/listen-library.el index 936a7f1073..6616b8e41a 100644 --- a/listen-library.el +++ b/listen-library.el @@ -152,7 +152,8 @@ specified in which to show the view." (list tracks))) ;; (taxy-sort #'string< #'listen-queue-track-) (taxy-sort* #'string< #'taxy-name) - taxy-magit-section-insert)) + taxy-magit-section-insert) + (goto-char (point-min))) (pop-to-buffer buffer))) ;;;; Commands