stricklandrbls commented on PR #883: URL: https://github.com/apache/daffodil-vscode/pull/883#issuecomment-1788273231
The issue I ran into was due to the fact that I moved the listener events for the highlight selection. Previously, there were listeners for each `ByteValue` but it was less load on the extension to have a single listener at the `ByteValue` container level, then parse which element fired the event. There are two separate `on:mousedown` and `on:mouseup` events that are distinct but the child components during a single byte selection only have `on:click` events. This meant that the parent container was still registering the _mousedown_ and preventing a full click/release cycle needed for a _click_. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
