mirror of
https://github.com/markmanx/isoflow.git
synced 2025-02-07 20:10:47 +00:00
fix: corrects value of disableInteractions
This commit is contained in:
parent
61e03f3367
commit
b34a2b27d3
2 changed files with 2 additions and 2 deletions
|
@ -103,7 +103,7 @@ const App = ({
|
|||
>
|
||||
<Renderer />
|
||||
<ItemControlsManager />
|
||||
{disableInteractions && <ToolMenu />}
|
||||
{!disableInteractions && <ToolMenu />}
|
||||
{mode.type === 'PLACE_ELEMENT' && mode.icon && (
|
||||
<SceneLayer>
|
||||
<DragAndDrop icon={mode.icon} tile={mouse.position.tile} />
|
||||
|
|
|
@ -140,7 +140,7 @@ export interface UiStateActions {
|
|||
setContextMenu: (contextMenu: ContextMenu) => void;
|
||||
setMouse: (mouse: Mouse) => void;
|
||||
setRendererSize: (rendererSize: Size) => void;
|
||||
setDisableInteractions: (enabled: boolean) => void;
|
||||
setDisableInteractions: (isDisabled: boolean) => void;
|
||||
setDebugMode: (enabled: boolean) => void;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue