Skip to content

Commit 1382c2b

Browse files
committed
actually the COMMA key was there, but with different query name
1 parent c43ba1b commit 1382c2b

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

include/nbl/ui/KeyCodes.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,6 @@ namespace nbl::ui
126126
EKC_F23,
127127
EKC_F24,
128128

129-
EKC_SEPARATOR,
130129
EKC_NUM_LOCK,
131130
EKC_SCROLL_LOCK,
132131

src/nbl/ui/CWindowManagerAndroid.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ namespace nbl::ui
275275
case AKEYCODE_STAR: nablaKeyCode = EKC_MULTIPLY; break;
276276
case AKEYCODE_SLASH: nablaKeyCode = EKC_DIVIDE; break;
277277
case AKEYCODE_PERIOD: [[fallthrough]];
278-
case AKEYCODE_COMMA: nablaKeyCode = EKC_SEPARATOR; break;
278+
case AKEYCODE_COMMA: nablaKeyCode = EKC_COMMA; break;
279279
case AKEYCODE_NUM_LOCK: nablaKeyCode = EKC_NUM_LOCK; break;
280280
case AKEYCODE_SCROLL_LOCK: nablaKeyCode = EKC_SCROLL_LOCK; break;
281281
case AKEYCODE_MUTE: nablaKeyCode = EKC_VOLUME_MUTE; break;

0 commit comments

Comments
 (0)