From 6e30040d81e760d856df07e7bcb36e24a646e4d1 Mon Sep 17 00:00:00 2001 From: redphx <96280+redphx@users.noreply.github.com> Date: Sat, 30 Apr 2022 16:36:07 +0700 Subject: [PATCH] Add SHORTCUT_DONT_SHOW_ANYMORE --- joydance/constants.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/joydance/constants.py b/joydance/constants.py index ab8df8c..fc0c629 100644 --- a/joydance/constants.py +++ b/joydance/constants.py @@ -38,6 +38,7 @@ class Command(Enum): BACK = 'SHORTCUT_BACK' CHANGE_DANCERCARD = 'SHORTCUT_CHANGE_DANCERCARD' + DONT_SHOW_ANYMORE = 'SHORTCUT_DONT_SHOW_ANYMORE' FAVORITE = 'SHORTCUT_FAVORITE' GOTO_SONGSTAB = 'SHORTCUT_GOTO_SONGSTAB' SKIP = 'SHORTCUT_SKIP' @@ -109,6 +110,7 @@ SHORTCUT_MAPPING = { Command.UPLAY, ], JoyConButton.PLUS: [ + Command.DONT_SHOW_ANYMORE, Command.FAVORITE, Command.PAUSE, Command.PLAYLIST_RENAME,