fix incorrect selection mode for Shift

This commit is contained in:
sheaf 2020-09-06 01:06:44 +02:00
parent 031d72a69b
commit 9a2f123895

View file

@ -92,7 +92,7 @@ instance Monoid SelectionMode where
selectionMode :: Foldable f => f Modifier -> SelectionMode
selectionMode = foldMap \case
Alt _ -> Subtract
Shift _ -> Subtract
Shift _ -> Add
_ -> New
-- | Updates the selected objects on a single click selection event.