mirror of
https://github.com/jeffvli/sonixd.git
synced 2026-04-30 03:02:37 -04:00
Increase drag select debounce from 100ms -> 200ms
- 100ms seems too short, causing lag when dragging
This commit is contained in:
@@ -191,7 +191,7 @@ const ListViewTable = ({
|
||||
const debouncedMouseEnterFn = _.debounce((rowData: any) => {
|
||||
dispatch(setRangeSelected(rowData));
|
||||
dispatch(toggleRangeSelected(sortColumn && !nowPlaying ? sortedData : data));
|
||||
}, 100);
|
||||
}, 200);
|
||||
|
||||
const handleSelectMouseEnter = (rowData: any) => {
|
||||
if (multiSelect.isSelectDragging) {
|
||||
|
||||
Reference in New Issue
Block a user