Limit the force-click during drag fix to macOS (4fb0661b)

This commit is contained in:
Adomas Venčkauskas 2022-06-15 09:08:30 +03:00 committed by Dan Stillman
parent 9feb2fc6cf
commit 3ff650f046

View file

@ -669,7 +669,9 @@ class VirtualizedTable extends React.Component {
// causing a collection change on dragend, so we add a delay here. It shouldn't cause any issues // causing a collection change on dragend, so we add a delay here. It shouldn't cause any issues
// because isMouseDrag is only used in mouseup handler to exactly prevent from accidentally switching // because isMouseDrag is only used in mouseup handler to exactly prevent from accidentally switching
// selection after dragend. // selection after dragend.
await Zotero.Promise.delay(500); if (Zotero.isMac) {
await Zotero.Promise.delay(500);
}
this._isMouseDrag = false; this._isMouseDrag = false;
} }