From 5257527c51906a7b1933a30902885ebf62d30166 Mon Sep 17 00:00:00 2001 From: Xjph Date: Mon, 22 Jan 2024 08:59:04 -0330 Subject: [PATCH 1/2] suspend main window draw during read all --- ObservatoryCore/UI/CoreForm.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ObservatoryCore/UI/CoreForm.cs b/ObservatoryCore/UI/CoreForm.cs index 7e76e76..5cb93d8 100644 --- a/ObservatoryCore/UI/CoreForm.cs +++ b/ObservatoryCore/UI/CoreForm.cs @@ -225,7 +225,9 @@ namespace Observatory.UI ThemeManager.GetInstance.RegisterControl(readAllDialogue); readAllDialogue.StartPosition = FormStartPosition.Manual; readAllDialogue.Location = Point.Add(Location, new Size(100, 100)); + SuspendDrawing(this); readAllDialogue.ShowDialog(); + ResumeDrawing(this); } private void PopupNotificationLabel_Click(object _, EventArgs e) From d061275e36ca9ae4558265c950f2d701bdb3a4de Mon Sep 17 00:00:00 2001 From: Xjph Date: Mon, 22 Jan 2024 09:19:19 -0330 Subject: [PATCH 2/2] missing crime types --- ObservatoryFramework/Files/ParameterTypes/Enumerations.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ObservatoryFramework/Files/ParameterTypes/Enumerations.cs b/ObservatoryFramework/Files/ParameterTypes/Enumerations.cs index 25cbb8f..aa2e938 100644 --- a/ObservatoryFramework/Files/ParameterTypes/Enumerations.cs +++ b/ObservatoryFramework/Files/ParameterTypes/Enumerations.cs @@ -83,6 +83,8 @@ namespace Observatory.Framework.Files.ParameterTypes onfoot_dataTransfer, onFoot_carryingStolenGoods, onFoot_eBreachUse, + onFoot_breakingAndEntering, + shuttleDestruction, collidedWithDamage }