src/Tools/jEdit/src/theories_dockable.scala
changeset 66416 e20ce089a14d
parent 66412 a8556be5be0b
child 66417 1f46b6693b56
equal deleted inserted replaced
66415:96ad7d5ff613 66416:e20ce089a14d
    45       case MouseMoved(_, point, _) =>
    45       case MouseMoved(_, point, _) =>
    46         val index = peer.locationToIndex(point)
    46         val index = peer.locationToIndex(point)
    47         val index_location = peer.indexToLocation(index)
    47         val index_location = peer.indexToLocation(index)
    48         if (index >= 0 && in_checkbox(index_location, point))
    48         if (index >= 0 && in_checkbox(index_location, point))
    49           tooltip = "Mark as required for continuous checking"
    49           tooltip = "Mark as required for continuous checking"
    50         if (index >= 0 && in_label(index_location, point))
    50         else if (index >= 0 && in_label(index_location, point))
    51           tooltip = "theory " + quote(listData(index).theory)
    51           tooltip = "theory " + quote(listData(index).theory)
    52         else
    52         else
    53           tooltip = null
    53           tooltip = null
    54     }
    54     }
    55   }
    55   }