We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1795f3f commit dffd5e5Copy full SHA for dffd5e5
assets/graph_view.txt.js
@@ -243,7 +243,9 @@ class GraphRenderWorker
243
this.cameraScale = 1;
244
this.hoveredNode = -1;
245
this.grabbedNode = -1;
246
- this.resampleColors();
+ setTimeout(() => {
247
+ this.resampleColors();
248
+ }, 500)
249
250
this.#pixiInit();
251
@@ -862,7 +864,9 @@ function initializeGraphEvents()
862
864
863
865
document.querySelector(".theme-toggle-input")?.addEventListener("change", event =>
866
{
- renderWorker.resampleColors();
867
868
+ renderWorker.resampleColors();
869
+ }, 1000)
870
});
871
872
function toggleExpandedGraph()
0 commit comments