Skip to content

Commit 2316207

Browse files
authored
Merge pull request #57888 from CyberAndrii/55848-fix-tooltip-flicks-before-showing-fully
Fix tooltip flicks before showing fully
2 parents f13a344 + 480beb8 commit 2316207

File tree

1 file changed

+1
-1
lines changed
  • src/styles/utils/generators/TooltipStyleUtils

1 file changed

+1
-1
lines changed

src/styles/utils/generators/TooltipStyleUtils/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ const createTooltipStyleUtils: StyleUtilGenerator<GetTooltipStylesStyleUtil> = (
287287
const tooltipHorizontalPadding = spacing.ph2.paddingHorizontal * 2;
288288
const tooltipWidth = props.tooltipContentWidth && props.tooltipContentWidth + tooltipHorizontalPadding + 1;
289289
const isTooltipSizeReady = tooltipWidth !== undefined && props.tooltipWrapperHeight !== undefined;
290-
let scale = 1;
290+
let scale = 0;
291291
if (isTooltipSizeReady) {
292292
scale = props.currentSize.get();
293293
}

0 commit comments

Comments
 (0)