diff --git a/Dichtheitspruefung b/Dichtheitspruefung index e33cb6d..029ab9b 160000 --- a/Dichtheitspruefung +++ b/Dichtheitspruefung @@ -1 +1 @@ -Subproject commit e33cb6d1c417663689aa10f456918c4568f75904 +Subproject commit 029ab9baf60b23f3a50053a1a825fa0676f4d21b diff --git a/SanSystem/UCInliner.cs b/SanSystem/UCInliner.cs index 9ac452a..62c3aba 100644 --- a/SanSystem/UCInliner.cs +++ b/SanSystem/UCInliner.cs @@ -374,8 +374,16 @@ namespace SanSystem { if(inliner.EndeAushaertung == DateTime.MinValue) { - MessageBox.Show("Es konnte das Ende der Aushärtung nicht gefunden werden, breche ab"); - return; + if (Debugger.IsAttached) + { + inliner.EndeAushaertung = DateTime.Now; + } + else + { + MessageBox.Show("Es konnte das Ende der Aushärtung nicht gefunden werden, breche ab"); + return; + } + } Thread generateDichtheitsprüfung = new Thread(GeneriereDP);