Re: RFR: 8090158: Wrong implementation of adjustValue in scrollBars [v2]

2021-09-21 Thread Kevin Rushforth
On Tue, 21 Sep 2021 08:53:07 GMT, Hadzic Samir wrote: >> JBS bug: [JDK-8090158](https://bugs.openjdk.java.net/browse/JDK-8090158) >> >> The javadoc of the ScrollBar#adjustValue specifically says that it will >> adjust the value based on the block increment value. Therefore, there is no >>

Re: RFR: 8090158: Wrong implementation of adjustValue in scrollBars [v2]

2021-09-21 Thread Ajit Ghaisas
On Tue, 21 Sep 2021 08:53:07 GMT, Hadzic Samir wrote: >> JBS bug: [JDK-8090158](https://bugs.openjdk.java.net/browse/JDK-8090158) >> >> The javadoc of the ScrollBar#adjustValue specifically says that it will >> adjust the value based on the block increment value. Therefore, there is no >>

Re: RFR: 8090158: Wrong implementation of adjustValue in scrollBars [v2]

2021-09-21 Thread Hadzic Samir
> JBS bug: [JDK-8090158](https://bugs.openjdk.java.net/browse/JDK-8090158) > > The javadoc of the ScrollBar#adjustValue specifically says that it will > adjust the value based on the block increment value. Therefore, there is no > reason to stop at the given value when reaching an end. Hadzic