UI fix: Collapsed 2dMPR button to main toolbar

This commit is contained in:
Tomas Zubiri 2019-09-24 18:43:32 -03:00
parent 6a5ebb3e25
commit c57298475a
2 changed files with 4 additions and 9 deletions

View File

@ -38,18 +38,13 @@ const mergeProps = (propsFromState, propsFromDispatch, ownProps) => {
// TODO: Do not display certain options if the current display set
// cannot be displayed using these view types
const button =
{
label: "2D MPR",
icon: "cube",
onClick: () => {
const mpr = () => {
commandsManager.runCommand("mpr2d");
}
}
;
return {
button
mpr
};
};

View File

@ -5,7 +5,7 @@ import './PluginSwitch.css';
class PluginSwitch extends Component {
static propTypes = {
button: PropTypes.any,
mpr: PropTypes.func,
};
static defaultProps = {};
@ -15,7 +15,7 @@ class PluginSwitch extends Component {
<div className="PluginSwitch">
<ToolbarButton label = "2D MPR"
icon = "cube"
onClick = {this.props.button.onClick} />
onClick = {this.props.mpr} />
</div>
);
}