Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions src/js/components/PlaybackControls.js
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,16 @@ const PlaybackControls = () => {
</section>

<section className="settings">
<button
type="button"
className={`control tooltip`}
onClick={() => dispatch(mopidyActions.stop())}
>
<Icon name="stop" type="material" />
<span className="tooltip__content">
<I18n path="actions.stop" />
</span>
</button>
<button
type="button"
className={`control${consume ? ' control--active' : ''} tooltip`}
Expand Down