diff options
author | Grant Shangreaux <shoshin@cicadas.surf> | 2023-02-24 22:41:14 -0600 |
---|---|---|
committer | Grant Shangreaux <shoshin@cicadas.surf> | 2023-02-24 22:41:14 -0600 |
commit | 98a92f5c8fe8d4326226a0af3ee9cd1499676196 (patch) | |
tree | cf6de7da5ef8d8cd256c5eb0320d8cfba98b49ce /playlist.lisp | |
parent | 0e4d5bc7f2633969dc1c3fd0c6f4e27b16f6f73e (diff) |
Use value instead of place-holder for track inputs
Diffstat (limited to 'playlist.lisp')
-rw-r--r-- | playlist.lisp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/playlist.lisp b/playlist.lisp index 531789a..0f2f8ac 100644 --- a/playlist.lisp +++ b/playlist.lisp @@ -234,9 +234,9 @@ (editing? track-ctl) t) (with-slots (artist-input album-input title-input) track-ctl (with-slots (artist album title) (track track-ctl) - (setf (place-holder artist-input) (or artist "Artist") - (place-holder album-input) (or album "Album") - (place-holder title-input) (or title "Title")) + (setf (value artist-input) (or artist "Artist") + (value album-input) (or album "Album") + (value title-input) (or title "Title")) (set-on-click (edit-save-btn track-ctl) (thunk* (update-track-info |