scala-swing icon indicating copy to clipboard operation
scala-swing copied to clipboard

ScrollBar should publish adjustment event

Open Sciss opened this issue 5 years ago • 0 comments

This is in my own extension:

  peer.addAdjustmentListener(new java.awt.event.AdjustmentListener {
    def adjustmentValueChanged(e: java.awt.event.AdjustmentEvent): Unit =
      publish(new swing.event.ValueChanged(me))
  })

probably something like this should be in swing directly.

Sciss avatar Nov 22 '20 11:11 Sciss