[
https://issues.apache.org/jira/browse/GUACAMOLE-2222?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=18059454#comment-18059454
]
Nick Couchman commented on GUACAMOLE-2222:
------------------------------------------
[~bradleybennett] You mentioned in your PR that more investigation was needed
on some of the issues you were seeing with this. Is that still the case, and
should we hold this ticket open for now?
> After browser blur & focus, mouse events not generated (keyboard events are)
> ----------------------------------------------------------------------------
>
> Key: GUACAMOLE-2222
> URL: https://issues.apache.org/jira/browse/GUACAMOLE-2222
> Project: Guacamole
> Issue Type: Bug
> Components: guacamole-client
> Affects Versions: 1.6.1
> Reporter: Bradley Bennett
> Priority: Minor
>
> I believe we are looping in {*}checkClipboardSync(){*}, i.e.
> *clipboardSyncInProgress* is true & not being cleared.
> {code:java}
> function waitForClipboardSync() {
> return new Promise((resolve) => {
> function checkClipboardSync() {
> if (!clipboardSyncInProgress) { << looping
> resolve();
> return;
> } // Synchronization can take 8-10ms,
> so check again shortly
> // to not add slight latency in fast environments.
> setTimeout(checkClipboardSync, 10);
> } checkClipboardSync();
> });
> } {code}
> Still investigation.
> Not sure if this is relevant, but connecting to a *Debian 13 aarch64 VM* from
> a Mac Chrome browser via a Guacamole staging/1.6.1 installed in {*}Rocky 9
> aarch VM{*}.
--
This message was sent by Atlassian Jira
(v8.20.10#820010)