!1725 修复:底部工具栏进度条和坐标交替显示

pull/1726/MERGE
我是一条懒汉 3 years ago committed by ChenX
parent 3cf7da858c
commit 63a98986d7

@ -360,14 +360,15 @@ export class DownPanel extends React.Component<{ store?: DownPanelStore; }, {}>
};
return (
<div className='DownPanelCoordinateAndRadios'
style={{ display: this.downStore.isBottomToolBarShow ? "flex" : "none" }}>
<span style={{ color: "black", width: "150px" }} ref={el => this.props.store.posEl = el}>0,0,0</span>
style={{ display: this.downStore.isBottomToolBarShow ? "flex" : "none", position: "relative" }}>
<span style={{ display: this.props.store.progress !== 1 ? "none" : "block", width: "180px" }} ref={el => this.props.store.posEl = el}>0,0,0</span>
<span style={{ display: this.props.store.progress === 1 ? "none" : "block" }}>{this.props.store.progressName}</span>
<div style={{
float: "right", marginRight: "10px",
width: "150px",
marginLeft: '10px',
zIndex: 5000,
position: 'absolute',
top: "50%",
marginTop: "-4px",
display: this.props.store.progress === 1 ? "none" : "block"
}}>
<ProgressBar intent={"primary"} value={this.props.store.progress}></ProgressBar>

Loading…
Cancel
Save