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 a447f00 commit 23df002Copy full SHA for 23df002
src/renderer/components/FamilyTreePanel.tsx
@@ -49,6 +49,10 @@ export const FamilyTreePanel: React.FC<FamilyTreePanelProps> = ({
49
const [tooltipPosition, setTooltipPosition] = useState({ x: 0, y: 0 })
50
const [lastTouchDistance, setLastTouchDistance] = useState<number | null>(null)
51
const [touchStartPos, setTouchStartPos] = useState<{ x: number; y: number } | null>(null)
52
+ const [animationFrame, setAnimationFrame] = useState(0)
53
+ const [showDeadAgents, setShowDeadAgents] = useState(true)
54
+ const [filterToLineage, setFilterToLineage] = useState(false)
55
+ const [showStats, setShowStats] = useState(false)
56
57
useEffect(() => {
58
setNodes(new Map())
0 commit comments