Skip to content

Commit c0ebbef

Browse files
authored
macOS: Fix error sound for every KB keypress on render canvas (#521)
1 parent 8ff668a commit c0ebbef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/gui/MainWindow.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1388,7 +1388,7 @@ void MainWindow::OnChar(wxKeyEvent& event)
13881388
if (swkbd_hasKeyboardInputHook())
13891389
swkbd_keyInput(event.GetUnicodeKey());
13901390

1391-
event.Skip();
1391+
// event.Skip();
13921392
}
13931393

13941394
void MainWindow::OnToolsInput(wxCommandEvent& event)

0 commit comments

Comments
 (0)