Hey all, just wondering if someone can help me out here.
I have a juce application that uses a single applicationcommandtarget to handle all keyboard shortcuts. Within this application, we handle traditional shortcuts like cmd+c for copy, and cmd+v for paste.
We’re now introducing a webview component, and when attempting to use any shortcut that’s registered with the old applicationcommandtarget, it will instead be handled via that.
I can think of a few things I would like to do to solve this, but most of them require knowledge of when the webview component has focus.
Though the (choc) webview component is wrapped inside a juce::Component, clicking inside the webview causes the juce component focus to just act as if I clicked outside the application, as the focused component becomes null.
Is there any recommended way to approach this issue?
