Browse Source

Merge pull request #1331 in BA/design from ~MANGO/m_design:release/9.0 to release/9.0

* commit 'd0be93c2243548b873d99117ced078620ebf0c52':
  修改图表提示图片 没有开启自动刷新时,时间设置为0
master
superman 7 years ago
parent
commit
b28ff6692c
  1. 2
      designer_chart/src/com/fr/design/mainframe/chart/gui/other/ChartInteractivePane.java

2
designer_chart/src/com/fr/design/mainframe/chart/gui/other/ChartInteractivePane.java

@ -821,7 +821,7 @@ public class ChartInteractivePane extends BasicScrollPane<Chart> implements UIOb
if(isAutoRefresh.isSelected() && autoRefreshTime.getValue() >= 2) {
plot.setAutoRefreshPerSecond((int) autoRefreshTime.getValue());
} else {
plot.setAutoRefreshPerSecond(-1);
plot.setAutoRefreshPerSecond(0);
}
}
}

Loading…
Cancel
Save