src/Tools/Graphview/tree_panel.scala
changeset 59395 4c5396f52546
parent 59392 02bacfc31446
child 59396 a2f4252c5489
equal deleted inserted replaced
59394:bc3a21ca23aa 59395:4c5396f52546
    82     tooltip = selection_label.tooltip
    82     tooltip = selection_label.tooltip
    83   }
    83   }
    84   private val selection_field_foreground = selection_field.foreground
    84   private val selection_field_foreground = selection_field.foreground
    85 
    85 
    86   private val selection_delay =
    86   private val selection_delay =
    87     GUI_Thread.delay_last(visualizer.get_options.seconds("editor_input_delay")) {
    87     GUI_Thread.delay_last(visualizer.options.seconds("editor_input_delay")) {
    88       val (pattern, ok) =
    88       val (pattern, ok) =
    89         selection_field.text match {
    89         selection_field.text match {
    90           case null | "" => (None, true)
    90           case null | "" => (None, true)
    91           case s =>
    91           case s =>
    92             val pattern = Library.make_regex(s)
    92             val pattern = Library.make_regex(s)