From 2832c6c540f2b069fd3659be8ce40f335a86975a Mon Sep 17 00:00:00 2001 From: Andrzej Rybczak Date: Wed, 4 Nov 2015 20:25:17 +0100 Subject: [PATCH] actions: require confirmation before shuffling range --- src/actions.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/actions.cpp b/src/actions.cpp index a089ca82..93deca30 100644 --- a/src/actions.cpp +++ b/src/actions.cpp @@ -1215,6 +1215,7 @@ bool Shuffle::canBeRun() void Shuffle::run() { + confirmAction("Do you really want to shuffle selected range?"); auto begin = myPlaylist->main().begin(); Mpd.ShuffleRange(m_begin-begin, m_end-begin); Statusbar::print("Range shuffled");