diff options
Diffstat (limited to 'components/tweaks.tsx')
-rw-r--r-- | components/tweaks.tsx | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/components/tweaks.tsx b/components/tweaks.tsx index 394c005..b2b0aaf 100644 --- a/components/tweaks.tsx +++ b/components/tweaks.tsx @@ -145,7 +145,12 @@ export const Tweaks = (props: TweakProps) => { <IconButton aria-label="Reset Defaults" icon={<RepeatClockIcon />} - onClick={() => setPhysics(initialPhysics)} + onClick={() => { + setVisuals(initialVisuals) + setFilter(initialFilter) + setMouse(initialMouse) + setPhysics(initialPhysics) + }} variant="none" size="sm" /> |