From c5f863c09839dbb1e1ea7965b0751d14d9152522 Mon Sep 17 00:00:00 2001 From: Xjph Date: Mon, 22 Jan 2024 08:59:04 -0330 Subject: [PATCH] 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 e0c964f..c559d9b 100644 --- a/ObservatoryCore/UI/CoreForm.cs +++ b/ObservatoryCore/UI/CoreForm.cs @@ -231,7 +231,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)