diff --git a/packages/app-desktop/gui/ToolbarButton/styles/index.ts b/packages/app-desktop/gui/ToolbarButton/styles/index.ts index b389b687ae..60dde30b64 100644 --- a/packages/app-desktop/gui/ToolbarButton/styles/index.ts +++ b/packages/app-desktop/gui/ToolbarButton/styles/index.ts @@ -38,6 +38,7 @@ const iconStyle = css` font-size: ${(props:IconProps) => props.theme.toolbarIconSize}px; color: ${(props:IconProps) => props.theme.color3}; margin-right: ${(props:IconProps) => props.title ? 5 : 0}px; + pointer-events: none; /* Need this to get button tooltip to work */ `; export const StyledIconI = styled.i`${iconStyle}`;