src/Tools/jEdit/src/document_dockable.scala
changeset 76719 2c8632c746fe
parent 76718 3f50b24909df
child 76720 37f7b2965e02
--- a/src/Tools/jEdit/src/document_dockable.scala	Tue Dec 20 18:43:17 2022 +0100
+++ b/src/Tools/jEdit/src/document_dockable.scala	Tue Dec 20 19:19:44 2022 +0100
@@ -119,9 +119,6 @@
 
   /* document build process */
 
-  private def document_theories(): List[Document.Node.Name] =
-    PIDE.editor.document_theories()
-
   private def init_state(): Unit =
     current_state.change { _ => Document_Dockable.State(progress = log_progress()) }
 
@@ -163,7 +160,8 @@
 
         finish_process(Nil)
         GUI_Thread.later {
-          theories.update(domain = Some(document_theories().toSet), trim = true)
+          val domain = PIDE.editor.document_theories().toSet
+          theories.update(domain = Some(domain), trim = true, force = true)
           show_state()
           show_page(theories_page)
         }
@@ -290,7 +288,7 @@
         }
       case changed: Session.Commands_Changed =>
         GUI_Thread.later {
-          val domain = document_theories().filter(changed.nodes).toSet
+          val domain = PIDE.editor.document_theories().filter(changed.nodes).toSet
           if (domain.nonEmpty) theories.update(domain = Some(domain))
         }
     }
@@ -300,7 +298,6 @@
     init_state()
     PIDE.session.global_options += main
     PIDE.session.commands_changed += main
-    theories.update(domain = Some(document_theories().toSet), force = true)
     handle_resize()
     delay_load.invoke()
   }