From 333b2959cd8c43bd580226bb5dfe0fb17587cf93 Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Mon, 22 Jun 2020 17:27:46 +0200 Subject: [PATCH] Decrease the frequency of the non-manifold check CURA-7106 --- plugins/SolidView/SolidView.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/SolidView/SolidView.py b/plugins/SolidView/SolidView.py index 7d4e0cfcce..3ae26a5aaf 100644 --- a/plugins/SolidView/SolidView.py +++ b/plugins/SolidView/SolidView.py @@ -64,7 +64,7 @@ class SolidView(View): self._old_layer_bindings = None self._next_xray_checking_time = time.time() - self._xray_checking_update_time = 1.0 # seconds + self._xray_checking_update_time = 30.0 # seconds self._xray_warning_cooldown = 60 * 10 # reshow Model error message every 10 minutes self._xray_warning_message = Message( catalog.i18nc("@info:status", "Your model is not manifold. The highlighted areas indicate either missing or extraneous surfaces."),