mirror of
https://github.com/scratchfoundation/scratch-paint.git
synced 2025-01-09 14:12:13 -05:00
comment out disabled mode tools for now
This commit is contained in:
parent
cdb235a876
commit
0f726c9d40
1 changed files with 4 additions and 8 deletions
|
@ -79,39 +79,35 @@ const ModeToolsComponent = props => {
|
||||||
case Modes.RESHAPE:
|
case Modes.RESHAPE:
|
||||||
return (
|
return (
|
||||||
<div className={classNames(props.className, styles.modeTools)}>
|
<div className={classNames(props.className, styles.modeTools)}>
|
||||||
<LabeledIconButton
|
{/* <LabeledIconButton
|
||||||
disabled
|
|
||||||
imgAlt="Curved Point Icon"
|
imgAlt="Curved Point Icon"
|
||||||
imgSrc={curvedPointIcon}
|
imgSrc={curvedPointIcon}
|
||||||
title="Curved"
|
title="Curved"
|
||||||
onClick={function () {}}
|
onClick={function () {}}
|
||||||
/>
|
/>
|
||||||
<LabeledIconButton
|
<LabeledIconButton
|
||||||
disabled
|
|
||||||
imgAlt="Straight Point Icon"
|
imgAlt="Straight Point Icon"
|
||||||
imgSrc={straightPointIcon}
|
imgSrc={straightPointIcon}
|
||||||
title="Pointed"
|
title="Pointed"
|
||||||
onClick={function () {}}
|
onClick={function () {}}
|
||||||
/>
|
/> */}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
case Modes.SELECT:
|
case Modes.SELECT:
|
||||||
return (
|
return (
|
||||||
<div className={classNames(props.className, styles.modeTools)}>
|
<div className={classNames(props.className, styles.modeTools)}>
|
||||||
<LabeledIconButton
|
{/* <LabeledIconButton
|
||||||
disabled
|
|
||||||
imgAlt="Flip Horizontal Icon"
|
imgAlt="Flip Horizontal Icon"
|
||||||
imgSrc={flipHorizontalIcon}
|
imgSrc={flipHorizontalIcon}
|
||||||
title="Flip Horizontal"
|
title="Flip Horizontal"
|
||||||
onClick={function () {}}
|
onClick={function () {}}
|
||||||
/>
|
/>
|
||||||
<LabeledIconButton
|
<LabeledIconButton
|
||||||
disabled
|
|
||||||
imgAlt="Flip Vertical Icon"
|
imgAlt="Flip Vertical Icon"
|
||||||
imgSrc={flipVerticalIcon}
|
imgSrc={flipVerticalIcon}
|
||||||
title="Flip Vertical"
|
title="Flip Vertical"
|
||||||
onClick={function () {}}
|
onClick={function () {}}
|
||||||
/>
|
/> */}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
default:
|
default:
|
||||||
|
|
Loading…
Reference in a new issue