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
Before this commit:
- Users could only add to the selection using Ctrl+Click;
de-selection was not possible.
- Ctrl+Click on an already selected cell had no effect.
- There was no way to remove part of an existing selection.
Issue Example:
1. Select range A1:C3.
2. Ctrl+Click on B2.
3. Expected: Selection splits into A1:C1, A2, C2, A3:C3.
4. Previously, Selection remained unchanged; B2 stayed selected.
After this commit:
- Ctrl+Click on a selected cell now removes it from the selection.
- The selection is split into non-overlapping zones as needed.
Technical Changes:
- The commitSelection function is now triggered on mouse up to finalize
zone updates.
- If the active zone overlaps with existing selected zones, the overlapping
part is removed by splitting the zone.
closes#6125
Task: 4647187
Signed-off-by: Lucas Lefèvre (lul) <lul@odoo.com>
0 commit comments