Skip to content

Commit

Permalink
Make InputAwareInputService::processIdentifiedEvent private
Browse files Browse the repository at this point in the history
  • Loading branch information
Schahen committed May 30, 2024
1 parent 0a593db commit d209826
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ internal class BackingTextArea(
) {
private val textArea: HTMLTextAreaElement = createHtmlInput()

fun processIdentifiedEvent(evt: Event) {
private fun processIdentifiedEvent(evt: Event) {
if (evt !is KeyboardEvent) return
// TODO: In theory nothing stops us from passing Unidentified keys but this yet to be investigated:
// First, this way we will pass (and attempt to process) "dummy" KeyboardEvents that were designed not to have physical representation at all
Expand Down

0 comments on commit d209826

Please sign in to comment.