diff options
author | Christian Soffke <christian.soffke@gmail.com> | 2022-12-15 07:15:42 +0100 |
---|---|---|
committer | Christian Soffke <christian.soffke@gmail.com> | 2022-12-16 08:25:20 +0100 |
commit | a6bafe51a63850dcb25a61b1722595895e9a539e (patch) | |
tree | 80fa8ec33448d3f4327db7a680f7de43b10b0a96 | |
parent | 79e6139f56ba8812e2a2fab1688b89285ffda300 (diff) | |
download | rockbox-a6bafe51a6.tar.gz rockbox-a6bafe51a6.zip |
WPS hotkeys: Don't enable SBS for pitch screen or bookmarking
Change-Id: I5d5f4f1c402500abd15fcbb8b62013c97f4f931c
-rw-r--r-- | apps/gui/wps.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/gui/wps.c b/apps/gui/wps.c index f8fd99930f..3cda2fb44a 100644 --- a/apps/gui/wps.c +++ b/apps/gui/wps.c @@ -787,7 +787,7 @@ long gui_wps_show(void) hotkey = true; if (!global_settings.hotkey_wps) break; - if (global_settings.hotkey_wps == HOTKEY_PLUGIN) + if (get_hotkey(global_settings.hotkey_wps)->flags & HOTKEY_FLAG_NOSBS) { /* leave WPS without re-enabling theme */ theme_enabled = false; |