From 6ebd944c6d58a21130b6e74136f603209d1b1660 Mon Sep 17 00:00:00 2001 From: Aaron Dodson Date: Thu, 12 Jun 2025 13:53:43 -0700 Subject: [PATCH] fix: fix bug that could cause the wrong toolbox category to appear selected --- src/checkable_continuous_flyout.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/checkable_continuous_flyout.ts b/src/checkable_continuous_flyout.ts index 8a337d88d7..55b195de4c 100644 --- a/src/checkable_continuous_flyout.ts +++ b/src/checkable_continuous_flyout.ts @@ -109,4 +109,8 @@ export class CheckableContinuousFlyout extends ContinuousFlyout { } } } + + scrollTo(position: number) { + super.scrollTo(Math.ceil(position)); + } }