mirror of
https://github.com/excalidraw/excalidraw.git
synced 2025-04-14 16:40:58 -04:00
Fix status when do selectAll
while editing lines (#1828)
This commit is contained in:
parent
df5eb3f0d9
commit
6f13b5ac75
1 changed files with 3 additions and 0 deletions
|
@ -6,6 +6,9 @@ import { getNonDeletedElements } from "../element";
|
|||
export const actionSelectAll = register({
|
||||
name: "selectAll",
|
||||
perform: (elements, appState) => {
|
||||
if (appState.editingLinearElement) {
|
||||
return false;
|
||||
}
|
||||
return {
|
||||
appState: selectGroupsForSelectedElements(
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue