diff --git a/src/vs/workbench/browser/positronDataGrid/components/dataGridWaffle.tsx b/src/vs/workbench/browser/positronDataGrid/components/dataGridWaffle.tsx index c980ef3d7ffc..c9d52a17a06f 100644 --- a/src/vs/workbench/browser/positronDataGrid/components/dataGridWaffle.tsx +++ b/src/vs/workbench/browser/positronDataGrid/components/dataGridWaffle.tsx @@ -541,11 +541,6 @@ export const DataGridWaffle = forwardRef((_: unknown, ref) => { } } - // When the user is holding the shift key, invert delta X and delta Y. - if (e.shiftKey) { - [deltaX, deltaY] = [deltaY, deltaX]; - } - // If the alt key is pressed, scroll by 10 times the delta X and delta Y. if (e.altKey) { deltaX *= 10;