| 1485 | } |
| 1486 | |
| 1487 | void View::check_calibration() |
| 1488 | { |
| 1489 | if (_device_agent->get_work_mode() == DSO){ |
| 1490 | bool cali = false; |
| 1491 | _device_agent->get_config_bool(SR_CONF_CALI, cali); |
| 1492 | |
| 1493 | if (cali) { |
| 1494 | show_calibration(); |
| 1495 | } |
| 1496 | } |
| 1497 | } |
| 1498 | |
| 1499 | void View::set_scale(double scale) |
| 1500 | { |
no test coverage detected