src/Tools/jEdit/src/active.scala
changeset 71692 f8e52c0152fe
parent 71685 d5773922358d
child 71742 de37910974da
--- a/src/Tools/jEdit/src/active.scala	Sat Apr 04 21:38:20 2020 +0200
+++ b/src/Tools/jEdit/src/active.scala	Sun Apr 05 13:05:40 2020 +0200
@@ -31,14 +31,14 @@
             // FIXME avoid hard-wired stuff
             elem match {
               case XML.Elem(Markup(Markup.BROWSER, _), body) =>
-                Standard_Thread.fork(name = "browser") {
+                Isabelle_Thread.fork(name = "browser") {
                   val graph_file = Isabelle_System.tmp_file("graph")
                   File.write(graph_file, XML.content(body))
                   Isabelle_System.bash("isabelle browser -c " + File.bash_path(graph_file) + " &")
                 }
 
               case XML.Elem(Markup(Markup.GRAPHVIEW, _), body) =>
-                Standard_Thread.fork(name = "graphview") {
+                Isabelle_Thread.fork(name = "graphview") {
                   val graph =
                     Exn.capture { Graph_Display.decode_graph(body).transitive_reduction_acyclic }
                   GUI_Thread.later { Graphview_Dockable(view, snapshot, graph) }