From 88253cdb559c9520c5057ed0ccfe8128fb0e366b Mon Sep 17 00:00:00 2001 From: Mbucari <37587114+Mbucari@users.noreply.github.com> Date: Mon, 16 Aug 2021 10:08:21 -0600 Subject: [PATCH] Update LiberationBaseForm.cs --- .../BookLiberation/BaseForms/LiberationBaseForm.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/LibationWinForms/BookLiberation/BaseForms/LiberationBaseForm.cs b/LibationWinForms/BookLiberation/BaseForms/LiberationBaseForm.cs index b7f48d94..b69fa90d 100644 --- a/LibationWinForms/BookLiberation/BaseForms/LiberationBaseForm.cs +++ b/LibationWinForms/BookLiberation/BaseForms/LiberationBaseForm.cs @@ -17,13 +17,12 @@ namespace LibationWinForms.BookLiberation.BaseForms { //SynchronizationContext.Current will be null until the process contains a Form. //If this is the first form created, it will not exist until after execution - //reaches inside the constructor. So need to reset the context here. + //reaches inside the constructor (after base class has been initialized). Invoker = new SynchronizeInvoker(); } public void RegisterFileLiberator(IStreamable streamable, LogMe logMe = null) { - //IFileLiberator must at least be IStreamable, otherwise the Form won't ever Show() if (streamable is null) return; Streamable = streamable;