From 9d57c427aceaa7c8fabe425005fa981e69a2de52 Mon Sep 17 00:00:00 2001 From: Mikhalkovich Stanislav Date: Mon, 30 Jun 2025 19:33:04 +0300 Subject: [PATCH] MainForm.Load += --- bin/Lib/GraphABC.pas | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/Lib/GraphABC.pas b/bin/Lib/GraphABC.pas index 22783ba33..39947814b 100644 --- a/bin/Lib/GraphABC.pas +++ b/bin/Lib/GraphABC.pas @@ -1,4 +1,4 @@ -// This code is distributed under the GNU LGPL (for details please see \doc\license.txt) +// This code is distributed under the GNU LGPL (for details please see \doc\license.txt) ///Модуль предоставляет константы, типы, процедуры, функции и классы для рисования в графическом окне unit GraphABC; @@ -4203,7 +4203,7 @@ begin InitForm; StartIsComplete := True; - mre.Set(); + MainForm.Load += (s,e) -> mre.Set(); Application.Run(MainForm); end;