diff options
Diffstat (limited to 'apps/plugins/vu_meter.c')
-rw-r--r-- | apps/plugins/vu_meter.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/apps/plugins/vu_meter.c b/apps/plugins/vu_meter.c index 673c080102..9dfae72dc0 100644 --- a/apps/plugins/vu_meter.c +++ b/apps/plugins/vu_meter.c @@ -19,6 +19,7 @@ **************************************************************************/ #include "plugin.h" #include "lib/fixedpoint.h" +#include "lib/playback_control.h" PLUGIN_HEADER @@ -471,7 +472,8 @@ static bool vu_meter_menu(void) bool exit = false; MENUITEM_STRINGLIST(menu,"VU Meter Menu",NULL,"Meter Type","Scale", - "Minimeters","Decay Speed","Quit"); + "Minimeters","Decay Speed","Playback Control", + "Quit"); static const struct opt_items meter_type_option[2] = { { "Analog", -1 }, @@ -536,6 +538,10 @@ static bool vu_meter_menu(void) break; case 4: + playback_control(NULL); + break; + + case 5: exit = true; /* fall through to exit the menu */ default: |