From d18bffef7df9bbfc5ceae7ac7b607c96611e1978 Mon Sep 17 00:00:00 2001 From: Claudio Sacerdoti Coen Date: Wed, 11 Oct 2006 14:26:59 +0000 Subject: [PATCH] Unlocking the interface was not performed as the last action of the callback. --- helm/software/matita/matitaGui.ml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/helm/software/matita/matitaGui.ml b/helm/software/matita/matitaGui.ml index 2a607d9fc..840d057c2 100644 --- a/helm/software/matita/matitaGui.ml +++ b/helm/software/matita/matitaGui.ml @@ -463,8 +463,8 @@ class gui () = f (); unlock_world () with exc -> - unlock_world (); - notify_exn exc + notify_exn exc; + unlock_world () in worker_thread := Some (Thread.create thread_main ()) in let kill_worker = -- 2.39.2