ui naming tweaks (#100)

ui nameing tweaks
This commit is contained in:
Kurt Hutten
2023-04-03 21:01:26 +10:00
committed by GitHub
parent 8df08be687
commit a1848f2563
2 changed files with 3 additions and 2 deletions

View File

@ -128,7 +128,8 @@ export const Toolbar = () => {
)} )}
{toolTips {toolTips
.filter( .filter(
(sketchFnName) => !['angledLineThatIntersects'].includes(sketchFnName) // (sketchFnName) => !['angledLineThatIntersects'].includes(sketchFnName)
(sketchFnName) => ['line'].includes(sketchFnName)
) )
.map((sketchFnName) => { .map((sketchFnName) => {
if ( if (

View File

@ -90,7 +90,7 @@ export const EqualAngle = () => {
disabled={!enableEqual} disabled={!enableEqual}
title="yo dawg" title="yo dawg"
> >
EqualAngle parallel
</button> </button>
) )
} }