diff options
| author | spycrab <spycrab@users.noreply.github.com> | 2019-03-18 16:58:26 +0100 |
|---|---|---|
| committer | spycrab <spycrab@users.noreply.github.com> | 2019-03-21 13:16:21 +0100 |
| commit | 0a3279ae6b8589ef9800ff361bc46e509fee99cf (patch) | |
| tree | d548f68f64ffedbf28a15dc67bfa590dd90cc1b1 /Source/Core | |
| parent | fcd0dbef2c9861431f3207d69260766309ad0134 (diff) | |
Fix ImGui key mapping Enter to the numpad
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/DolphinQt/RenderWidget.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DolphinQt/RenderWidget.cpp b/Source/Core/DolphinQt/RenderWidget.cpp index d501370843..ad6d65c252 100644 --- a/Source/Core/DolphinQt/RenderWidget.cpp +++ b/Source/Core/DolphinQt/RenderWidget.cpp @@ -324,7 +324,7 @@ void RenderWidget::SetImGuiKeyMap() {ImGuiKey_Delete, Qt::Key_Delete}, {ImGuiKey_Backspace, Qt::Key_Backspace}, {ImGuiKey_Space, Qt::Key_Space}, - {ImGuiKey_Enter, Qt::Key_Enter}, + {ImGuiKey_Enter, Qt::Key_Return}, {ImGuiKey_Escape, Qt::Key_Escape}, {ImGuiKey_A, Qt::Key_A}, {ImGuiKey_C, Qt::Key_C}, |
