You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Due to the current implementation of selecting and deselecting channels, there is overlapping functionality between just click, and click-and-drag. If the mouse moves even the smallest distance while clicking it will generate a click-and-drag event which then has a rectangle that is too small to select anything, and also precludes the user from deselecting since click-and-drag is only used to select channels.
One easy step:
Check for the size of the selected rectangle, and if it is below a certain size then treat the event as a single click, which then gives back the power to deselect via a click event.
Other possible solutions:
Add in a button that needs to be held to deselect (i.e., Shift + click), which can be for Shift + click-and-drag as well to bulk deselect channels
The text was updated successfully, but these errors were encountered:
Upon further testing, it appears that if there is more than one probe listed (such as in Rhs2116ChannelConfigurationDialog) the offset of the first probe is not taken into account when grabbing the index of the contact. This is an error, and should be corrected by applying the offset of all probes to the current index.
Due to the current implementation of selecting and deselecting channels, there is overlapping functionality between just click, and click-and-drag. If the mouse moves even the smallest distance while clicking it will generate a click-and-drag event which then has a rectangle that is too small to select anything, and also precludes the user from deselecting since click-and-drag is only used to select channels.
One easy step:
Other possible solutions:
The text was updated successfully, but these errors were encountered: