From f3d76dedf994772aac79a1064a106b7b2da9ad0a Mon Sep 17 00:00:00 2001 From: AliceBalfanz Date: Thu, 13 Aug 2020 09:24:00 +0200 Subject: [PATCH] fix tooltip of AddStep #12 --- src/renderer/components/ToolButton.tsx | 4 ++-- src/renderer/containers/OperationsPanel.tsx | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/renderer/components/ToolButton.tsx b/src/renderer/components/ToolButton.tsx index 0d2bc95..180a95a 100644 --- a/src/renderer/components/ToolButton.tsx +++ b/src/renderer/components/ToolButton.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {CSSProperties} from 'react'; -import {Button, IconName, Intent, Popover, PopoverPosition, Tooltip} from '@blueprintjs/core'; +import {AnchorButton, IconName, Intent, Popover, PopoverPosition, Tooltip} from '@blueprintjs/core'; export interface IToolButtonProps { onClick?: () => void; @@ -25,7 +25,7 @@ export function ToolButton(props: IToolButtonProps) { className = `${className} ${props.className}`; } const button = ( -