src/Tools/jEdit/src/output_dockable.scala
changeset 61728 5f5ff1eab407
parent 61725 1529c3eb6bac
child 62259 7afbd7fc32fd
--- a/src/Tools/jEdit/src/output_dockable.scala	Sat Nov 21 20:12:36 2015 +0100
+++ b/src/Tools/jEdit/src/output_dockable.scala	Sat Nov 21 20:13:52 2015 +0100
@@ -91,12 +91,14 @@
     if (output_state != b) {
       PIDE.options.bool("editor_output_state") = b
       PIDE.session.update_options(PIDE.options.value)
+      PIDE.editor.flush(hidden = true)
+      PIDE.editor.flush()
     }
   }
 
-  private val output_state_button = new CheckBox("Output state")
+  private val output_state_button = new CheckBox("Proof state")
   {
-    tooltip = "Implicit output of proof state"
+    tooltip = "Output of proof state (normally shown on State panel)"
     reactions += { case ButtonClicked(_) => output_state = selected }
     selected = output_state
   }