tuned signature;
authorwenzelm
Mon, 11 Mar 2019 18:58:06 +0100
changeset 69898 990c6e8faf2c
parent 69897 a9849222844d
child 69899 27cf4287de43
tuned signature;
src/Tools/VSCode/src/vscode_rendering.scala
src/Tools/jEdit/src/jedit_rendering.scala
--- a/src/Tools/VSCode/src/vscode_rendering.scala	Mon Mar 11 16:47:22 2019 +0100
+++ b/src/Tools/VSCode/src/vscode_rendering.scala	Mon Mar 11 18:58:06 2019 +0100
@@ -247,7 +247,7 @@
 
   /* tooltips */
 
-  def timing_threshold: Double = options.real("vscode_timing_threshold")
+  override def timing_threshold: Double = options.real("vscode_timing_threshold")
 
 
   /* hyperlinks */
--- a/src/Tools/jEdit/src/jedit_rendering.scala	Mon Mar 11 16:47:22 2019 +0100
+++ b/src/Tools/jEdit/src/jedit_rendering.scala	Mon Mar 11 18:58:06 2019 +0100
@@ -291,7 +291,7 @@
   /* tooltips */
 
   def tooltip_margin: Int = options.int("jedit_tooltip_margin")
-  def timing_threshold: Double = options.real("jedit_timing_threshold")
+  override def timing_threshold: Double = options.real("jedit_timing_threshold")
 
   def tooltip(range: Text.Range): Option[Text.Info[XML.Body]] =
     tooltips(Rendering.tooltip_elements, range).map(info => info.map(Pretty.fbreaks(_)))