-
-
Notifications
You must be signed in to change notification settings - Fork 2.7k
editor: session multi-select groups (Ctrl+G) #571
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
a90bfc6
a1d66e0
1443908
c804e3f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -115,6 +115,7 @@ import useInteractionScope, { | |
| useReshapingNode, | ||
| } from '../../store/use-interaction-scope' | ||
| import usePlacementPreview from '../../store/use-placement-preview' | ||
| import { expandSessionSelectionForNode } from '../../store/use-session-groups' | ||
| import { useStairBuildPreview } from '../../store/use-stair-build-preview' | ||
| import { FloorplanAlignmentGuideLayer } from '../editor-2d/floorplan-alignment-guide-layer' | ||
| import { FloorplanCursorIndicatorOverlay as Editor2dFloorplanCursorIndicatorOverlay } from '../editor-2d/floorplan-cursor-indicator-overlay' | ||
|
|
@@ -843,11 +844,13 @@ function getSelectionModifierKeys(event?: { | |
| metaKey?: boolean | ||
| ctrlKey?: boolean | ||
| shiftKey?: boolean | ||
| altKey?: boolean | ||
| }) { | ||
| return { | ||
| meta: Boolean(event?.metaKey), | ||
| ctrl: Boolean(event?.ctrlKey), | ||
| shift: Boolean(event?.shiftKey), | ||
| alt: Boolean(event?.altKey), | ||
| } | ||
| } | ||
|
|
||
|
|
@@ -9978,6 +9981,7 @@ export function FloorplanPanel({ | |
| canSelectElementFloorplanGeometry, | ||
| canSelectFloorplanZones, | ||
| currentSelectedIds: useViewer.getState().selection.selectedIds, | ||
| expandIdsForNode: expandSessionSelectionForNode, | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Marquee click skips group expandMedium Severity When the floor-plan selection tool is marquee, registry entry handlers are disabled and no-drag clicks go through Additional Locations (1)Reviewed by Cursor Bugbot for commit c804e3f. Configure here. |
||
| getFloorplanHitIdAtPoint, | ||
| isWallBuildActive, | ||
| modifierKeys, | ||
|
|
||


Uh oh!
There was an error while loading. Please reload this page.