Skip to content

Commit

Permalink
allbuild commit 87054f6
Browse files Browse the repository at this point in the history
  • Loading branch information
Olivier Gagnon committed Aug 31, 2022
1 parent 87054f6 commit 2592c6c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion dist/main.bundle.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/main.bundle.js.map

Large diffs are not rendered by default.

5 changes: 2 additions & 3 deletions src/ui/React/LogBoxManager.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,6 @@ function LogWindow(props: IProps): React.ReactElement {
const node = rootRef?.current;
if (!node) return;
const state = node.state as { x: number; y: number };
console.log(`before ${state.x} ${state.y}`);
state.x = x;
state.y = y;
};
Expand Down Expand Up @@ -315,8 +314,8 @@ function LogWindow(props: IProps): React.ReactElement {
ref={container}
>
<ResizableBox
height={size[0]}
width={size[1]}
width={size[0]}
height={size[1]}
onResize={onResize}
minConstraints={minConstraints}
handle={
Expand Down

0 comments on commit 2592c6c

Please sign in to comment.