comment out disabled mode tools for now

This commit is contained in:
Matthew Taylor 2017-10-26 14:20:39 -04:00
parent cdb235a876
commit 0f726c9d40

View file

@ -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: