Skip to content

Commit

Permalink
Tweak debounce for scene node visibility toggle, update package ignore
Browse files Browse the repository at this point in the history
  • Loading branch information
brentyi committed Aug 2, 2023
1 parent 1ef1de9 commit 7cd09b7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ warn_unused_configs = true
exclude="viser/client/.nodeenv"

[tool.pyright]
exclude = ["./docs/**/*", "./examples/assets/**/*", "./viser/client/.nodeenv"]
exclude = ["./docs/**/*", "./examples/assets/**/*", "./viser/client/.nodeenv", "./build"]

[tool.black]
exclude = "viser/client/.nodeenv"
Expand Down
2 changes: 1 addition & 1 deletion viser/client/src/ControlPanel/SceneTreeTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export default function SceneTreeTable(props: { compact: boolean }) {
debouncedReady.current = false;
setTimeout(() => {
debouncedReady.current = true;
}, 5);
}, 50);

function getSceneTreeSubRows(
parentName: string,
Expand Down

0 comments on commit 7cd09b7

Please sign in to comment.