Update select tool title

This commit is contained in:
Mitchell McCaffrey 2021-07-20 18:50:03 +10:00
parent df81def622
commit 7a2c852ea9

View File

@ -36,13 +36,13 @@ function SelectToolSettings({
const tools = [ const tools = [
{ {
id: "path", id: "path",
title: "Lasso (L)", title: "Lasso Selection (L)",
isSelected: settings.type === "path", isSelected: settings.type === "path",
icon: <PathIcon />, icon: <PathIcon />,
}, },
{ {
id: "rectangle", id: "rectangle",
title: "Rectangle (R)", title: "Rectangle Selection (R)",
isSelected: settings.type === "rectangle", isSelected: settings.type === "rectangle",
icon: <RectIcon />, icon: <RectIcon />,
}, },