diff options
author | Narr the Reg <juangerman-13@hotmail.com> | 2022-02-15 11:03:46 -0600 |
---|---|---|
committer | Narr the Reg <juangerman-13@hotmail.com> | 2022-02-15 11:08:11 -0600 |
commit | 1e21f5f8729c6987cc9e31184369f7269eea4a35 (patch) | |
tree | 0eee11bee8eab004011316752c0920812ef55aae /src/yuzu/configuration/configure_touch_from_button.cpp | |
parent | d81cdd9114148f304ce050a01ccfc1094d4b1755 (diff) |
yuzu: config: Fix mapping issues with the enter key
Diffstat (limited to 'src/yuzu/configuration/configure_touch_from_button.cpp')
-rw-r--r-- | src/yuzu/configuration/configure_touch_from_button.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/yuzu/configuration/configure_touch_from_button.cpp b/src/yuzu/configuration/configure_touch_from_button.cpp index bde0a08c4..211a00217 100644 --- a/src/yuzu/configuration/configure_touch_from_button.cpp +++ b/src/yuzu/configuration/configure_touch_from_button.cpp @@ -227,6 +227,9 @@ void ConfigureTouchFromButton::RenameMapping() { } void ConfigureTouchFromButton::GetButtonInput(const int row_index, const bool is_new) { + if (timeout_timer->isActive()) { + return; + } binding_list_model->item(row_index, 0)->setText(tr("[press key]")); input_setter = [this, row_index, is_new](const Common::ParamPackage& params, |