mirror of
https://gitlab.com/sheaf/metabrush.git
synced 2024-11-05 23:03:38 +00:00
fix incorrect selection mode for Shift
This commit is contained in:
parent
031d72a69b
commit
9a2f123895
|
@ -92,7 +92,7 @@ instance Monoid SelectionMode where
|
||||||
selectionMode :: Foldable f => f Modifier -> SelectionMode
|
selectionMode :: Foldable f => f Modifier -> SelectionMode
|
||||||
selectionMode = foldMap \case
|
selectionMode = foldMap \case
|
||||||
Alt _ -> Subtract
|
Alt _ -> Subtract
|
||||||
Shift _ -> Subtract
|
Shift _ -> Add
|
||||||
_ -> New
|
_ -> New
|
||||||
|
|
||||||
-- | Updates the selected objects on a single click selection event.
|
-- | Updates the selected objects on a single click selection event.
|
||||||
|
|
Loading…
Reference in a new issue