fix typo in action button tooltips (#324)

Co-authored-by: mysticmind <babu.annamalai@gmail.comm>
This commit is contained in:
Babu Annamalai 2021-11-20 20:40:34 +05:30 committed by GitHub
parent 119b1e3d0f
commit dcc3cd49b5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -193,12 +193,12 @@ export function ActionButton(): JSX.Element {
</Tooltip>
</ToolButton>
<ToolButton disabled={!hasSelection} onClick={handleToggleLocked}>
<Tooltip label="Toogle Locked" kbd={`#L`}>
<Tooltip label="Toggle Locked" kbd={`#L`}>
{isAllLocked ? <LockClosedIcon /> : <LockOpen1Icon />}
</Tooltip>
</ToolButton>
<ToolButton disabled={!hasSelection} onClick={handleToggleAspectRatio}>
<Tooltip label="Toogle Aspect Ratio Lock">
<Tooltip label="Toggle Aspect Ratio Lock">
{isAllAspectLocked ? <AspectRatioIcon /> : <BoxIcon />}
</Tooltip>
</ToolButton>