mirror of
https://github.com/scratchfoundation/scratch-paint.git
synced 2025-01-08 21:52:00 -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:
|
||||
return (
|
||||
<div className={classNames(props.className, styles.modeTools)}>
|
||||
<LabeledIconButton
|
||||
disabled
|
||||
{/* <LabeledIconButton
|
||||
imgAlt="Curved Point Icon"
|
||||
imgSrc={curvedPointIcon}
|
||||
title="Curved"
|
||||
onClick={function () {}}
|
||||
/>
|
||||
<LabeledIconButton
|
||||
disabled
|
||||
imgAlt="Straight Point Icon"
|
||||
imgSrc={straightPointIcon}
|
||||
title="Pointed"
|
||||
onClick={function () {}}
|
||||
/>
|
||||
/> */}
|
||||
</div>
|
||||
);
|
||||
case Modes.SELECT:
|
||||
return (
|
||||
<div className={classNames(props.className, styles.modeTools)}>
|
||||
<LabeledIconButton
|
||||
disabled
|
||||
{/* <LabeledIconButton
|
||||
imgAlt="Flip Horizontal Icon"
|
||||
imgSrc={flipHorizontalIcon}
|
||||
title="Flip Horizontal"
|
||||
onClick={function () {}}
|
||||
/>
|
||||
<LabeledIconButton
|
||||
disabled
|
||||
imgAlt="Flip Vertical Icon"
|
||||
imgSrc={flipVerticalIcon}
|
||||
title="Flip Vertical"
|
||||
onClick={function () {}}
|
||||
/>
|
||||
/> */}
|
||||
</div>
|
||||
);
|
||||
default:
|
||||
|
|
Loading…
Reference in a new issue