seeclaudecode 1.0.1 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/public/app.js +3 -4
package/package.json
CHANGED
package/public/app.js
CHANGED
|
@@ -491,10 +491,6 @@ class SeeClaude {
|
|
|
491
491
|
};
|
|
492
492
|
|
|
493
493
|
positionNode(this.structure, 0, 0, 50);
|
|
494
|
-
|
|
495
|
-
// Reset pan
|
|
496
|
-
this.panX = 0;
|
|
497
|
-
this.panY = 0;
|
|
498
494
|
}
|
|
499
495
|
|
|
500
496
|
getNodeType(node) {
|
|
@@ -943,6 +939,9 @@ class SeeClaude {
|
|
|
943
939
|
this.panY = 0;
|
|
944
940
|
this.updateGraphTransform();
|
|
945
941
|
});
|
|
942
|
+
|
|
943
|
+
// Apply saved transform
|
|
944
|
+
this.updateGraphTransform();
|
|
946
945
|
}
|
|
947
946
|
|
|
948
947
|
getNodeIcon(type) {
|