Zooming in JavaFx: ScrollEvent is consumed when content size exceeds ScrollPane viewport

前端 未结 3 2133
抹茶落季
抹茶落季 2020-12-31 14:18

I have an application that requires zoom inside a ScrollPane, but with my current approach I\'m still facing 2 challenges. In order to replicate the problem, I have written

3条回答
  •  失恋的感觉
    2020-12-31 14:48

    In my case I have updated the following line
    if (scrollEvent.isControlDown()) {
    with
    if (!scrollEvent.isConsumed()) {.... along with the change you have posted.... :)

提交回复
热议问题