We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello there, thank you for your work. Been using your library for a long time.
However, I'm observing a significant memory leak caused by detached Blade DOM elements, even after calling dispose() on their parent Pane:
dispose()
Pane
I followed the instructions here: https://tweakpane.github.io/docs/misc/#disposing.
Reproducing should be fairly simple:
Let me know if I'm missing something.
Thanks again.
The text was updated successfully, but these errors were encountered:
Do you clear the variable for the pane? For example:
window.pane = new Pane(); window.pane.dispose();
this code still retains references to detached nodes because window.pane isn't cleared. To avoid that, set it to null after disposing of the pane:
window.pane
null
window.pane = new Pane(); window.pane.dispose(); window.pane = null;
A minimal reproduction environment will help in investigating the issue. You can use tools like CodeSandbox to set up the environment.
Sorry, something went wrong.
No branches or pull requests
Hello there, thank you for your work. Been using your library for a long time.
However, I'm observing a significant memory leak caused by detached Blade DOM elements, even after calling
dispose()
on their parentPane
:I followed the instructions here: https://tweakpane.github.io/docs/misc/#disposing.
Reproducing should be fairly simple:
dispose()
on a parentPane
Let me know if I'm missing something.
Thanks again.
The text was updated successfully, but these errors were encountered: