Skip to content

Commit 37e4166

Browse files
committed
Send space char for WinAPI backend
Remove an earlier workaround to avoid duplicate space chars being sent. Fixes #1855
1 parent 672ef1c commit 37e4166

1 file changed

Lines changed: 0 additions & 4 deletions

File tree

extras/videoDrivers/WinAPI/WinAPI.cpp

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -459,10 +459,6 @@ void VideoWinAPI::SetMousePos(Position pos)
459459

460460
void VideoWinAPI::OnWMChar(unsigned c, bool disablepaste, LPARAM lParam)
461461
{
462-
// Keine Leerzeichen als Extra-Zeichen senden!
463-
if(c == ' ')
464-
return;
465-
466462
KeyEvent ke(c);
467463
setSpecialKeys(ke, lParam);
468464

0 commit comments

Comments
 (0)