From da2d3c33482bef1272ba29de95186d4dcc5f5358 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arne=20Schl=C3=BCter?= Date: Sun, 14 Oct 2018 11:42:50 +0200 Subject: [PATCH] Fix: Button labels were rubbish --- src/cljs/airsonic_ui/components/audio_player/views.cljs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/cljs/airsonic_ui/components/audio_player/views.cljs b/src/cljs/airsonic_ui/components/audio_player/views.cljs index ab11cbb..8a51042 100644 --- a/src/cljs/airsonic_ui/components/audio_player/views.cljs +++ b/src/cljs/airsonic_ui/components/audio_player/views.cljs @@ -114,9 +114,9 @@ :repeat-all :is-primary nil)) repeat-title (case repeat-mode - :repeat-all "Click to repeat current track" - :repeat-single "Click to repeat all" - "Click to repeat current track")] + :repeat-all "Repeating current queue, click to repeat current track" + :repeat-single "Repeating current track, click to repeat none" + "Click to repeat current queue")] [:div.field.has-addons ^{:key :shuffle-button} [shuffle-button {:on-click (toggle-shuffle playback-mode) :title "Shuffle"} [icon :random]]