The OnEditorActionListener handler is not being executed in the UI thread. This hasn't surprisingly caused many issues so far but it's a real problem for the Chromium backend because it will eventually invoke Tab's loadUrl(). The issue is that loadUrl() cannot be invoked from multiple threads (it's normally invoked from the UI thread).
The OnEditorActionListener handler is not being executed in the UI thread. This hasn't surprisingly caused many issues so far but it's a real problem for the Chromium backend because it will eventually invoke Tab's loadUrl(). The issue is that loadUrl() cannot be invoked from multiple threads (it's normally invoked from the UI thread).
Fixes #1201