mirror of
https://github.com/excalidraw/excalidraw.git
synced 2025-05-03 10:00:07 -04:00
fix: flip linear elements after redesign (#5538)
This commit is contained in:
parent
0a5da0269f
commit
3d9d398378
2 changed files with 5 additions and 16 deletions
|
@ -447,7 +447,10 @@ export const _renderScene = (
|
|||
renderConfig.zoom,
|
||||
"mouse", // when we render we don't know which pointer type so use mouse
|
||||
);
|
||||
if (!appState.viewModeEnabled) {
|
||||
if (
|
||||
!appState.viewModeEnabled &&
|
||||
!isLinearElement(locallySelectedElements[0])
|
||||
) {
|
||||
renderTransformHandles(
|
||||
context,
|
||||
renderConfig,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue