added GPR

This commit is contained in:
Ayzen
2026-03-19 19:29:08 +03:00
parent bdefe3f581
commit 9581730e41
39 changed files with 3830 additions and 201 deletions
@@ -353,7 +353,7 @@ class AppWindowPipelineMixin:
"""Reset runtime history and B-scan caches."""
self._replace_runtime_history(retained_raw=[], retained_pre=[], retained_result=[])
self._bscan_history_floor_collection_id = 0
self._clear_bscan_plot_history()
self._clear_history_mode_caches()
self._update_history_indicator()
def _replace_runtime_history(
@@ -385,4 +385,8 @@ class AppWindowPipelineMixin:
def _validate_processing_mode_constraints(self, config: RunConfigModel) -> None:
"""Validate processing-mode constraints for run start."""
validate_processing_mode_constraints(self._processing_mode.currentText(), config)
validate_processing_mode_constraints(
self._processing_mode.currentText(),
config,
self._live_processing_config(),
)