| 1036 | } |
| 1037 | |
| 1038 | void CartesianPlotDock::maxChanged(const Dimension dim, const int index, double max) { |
| 1039 | DEBUG(Q_FUNC_INFO << ", value = " << max); |
| 1040 | CONDITIONAL_RETURN_NO_LOCK; |
| 1041 | |
| 1042 | // selected x/y range |
| 1043 | for (auto* plot : m_plotList) { |
| 1044 | if (!qFuzzyCompare(max, plot->range(dim, index).end())) |
| 1045 | plot->setMax(dim, index, max); |
| 1046 | } |
| 1047 | } |
| 1048 | |
| 1049 | void CartesianPlotDock::minDateTimeChanged(const QObject* sender, const Dimension dim, qint64 value) { |
| 1050 | CONDITIONAL_LOCK_RETURN; |