mirror of
https://github.com/excalidraw/excalidraw.git
synced 2025-09-25 18:31:15 +02:00
swapping redo and delete
This commit is contained in:
@@ -917,9 +917,9 @@ export const MobileShapeActions = ({
|
||||
|
||||
const ADDITIONAL_WIDTH = WIDTH + GAP;
|
||||
|
||||
const showDeleteOutside = width >= MIN_WIDTH;
|
||||
const showDuplicateOutside = width >= MIN_WIDTH + 2 * ADDITIONAL_WIDTH;
|
||||
const showRedoOutside = width >= MIN_WIDTH + 3 * ADDITIONAL_WIDTH;
|
||||
const showRedoOutside = width >= MIN_WIDTH + 1 * ADDITIONAL_WIDTH;
|
||||
const showDeleteOutside = width >= 2 * MIN_WIDTH;
|
||||
const showDuplicateOutside = width >= MIN_WIDTH + 3 * ADDITIONAL_WIDTH;
|
||||
|
||||
return (
|
||||
<Island
|
||||
|
Reference in New Issue
Block a user