]> matita.cs.unibo.it Git - helm.git/blobdiff - matita/matita/matitaScript.ml
Code changed a bit to make it work as before with OCaml 4.0.
[helm.git] / matita / matita / matitaScript.ml
index 6a03e3538652c379234d31e76197627ab8d51a1a..cb443ae469254510b4a3e5ee2b459f9761001a47 100644 (file)
@@ -776,7 +776,10 @@ object (self)
       buffer#move_mark mark mark_position;
       source_view#scroll_to_mark ~use_align:true ~xalign:1.0 ~yalign:0.1 mark;
      end;
-    while Glib.Main.pending () do ignore(Glib.Main.iteration false); done
+    let time0 = Unix.gettimeofday () in
+    GtkThread.sync (fun () -> while Glib.Main.pending () do ignore(Glib.Main.iteration false); done) ();
+    let time1 = Unix.gettimeofday () in
+    HLog.debug ("... refresh done in " ^ string_of_float (time1 -. time0) ^ "s")
 
   method clean_dirty_lock =
     let lock_mark_iter = buffer#get_iter_at_mark (`MARK locked_mark) in