# HG changeset patch # User wenzelm # Date 1552327086 -3600 # Node ID 990c6e8faf2cfdd6bbc3bd1d8abdd4c0110de529 # Parent a9849222844d122d16863e26aa6cc160fe856111 tuned signature; diff -r a9849222844d -r 990c6e8faf2c src/Tools/VSCode/src/vscode_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 */ diff -r a9849222844d -r 990c6e8faf2c src/Tools/jEdit/src/jedit_rendering.scala --- 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(_)))