mirror of
https://github.com/excalidraw/excalidraw.git
synced 2025-05-03 10:00:07 -04:00
split curve only for rounded curves
This commit is contained in:
parent
750055ddfa
commit
bc5436592e
2 changed files with 13 additions and 11 deletions
|
@ -279,7 +279,7 @@ const renderLinearPointHandles = (
|
|||
const isSelected =
|
||||
!!appState.editingLinearElement?.selectedPointsIndices?.includes(idx);
|
||||
|
||||
const segmented = element.segmentSplitIndices ? element.segmentSplitIndices.includes(idx) : false;
|
||||
const segmented = element.roundness ? (element.segmentSplitIndices ? element.segmentSplitIndices.includes(idx) : false) : false;
|
||||
|
||||
renderSingleLinearPoint(context, appState, point, radius, isSelected, segmented);
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue