RFR: 6318027: BasicScrollBarUI does not disable timer when enclosing frame is disabled. [v3]

Tejesh R tr at openjdk.org
Fri Aug 16 04:13:50 UTC 2024


On Wed, 7 Aug 2024 13:52:07 GMT, Prasanta Sadhukhan <psadhukhan at openjdk.org> wrote:

>> Issue is
>> BasicScrollBarUI.ArrowButtonListener starts a timer in mousePressed(), and stops it in mouseReleased(). If the frame containing the scrollbar is disabled between the MOUSE_PRESSED and the MOUSE_RELEASED events, the mouseReleased() method is never called. If the frame is then re-enabled, the still-running timer causes it to scroll all the way to the end.
>> Fix is to check if [ArrowButtonListener.handledEvent](https://github.com/openjdk/jdk/blame/ee839b7f0ebe471d3877cddd2c87019ccb8ee5ae/src/java.desktop/share/classes/javax/swing/plaf/basic/BasicScrollBarUI.java#L1567) is still set when ActionEvent is processed then stop the timer and reset this variable.
>> 
>> CI testing is green and also SwingSet2 JScrollPane scrolling with this modification..
>
> Prasanta Sadhukhan has updated the pull request incrementally with two additional commits since the last revision:
> 
>  - copyright
>  - Restore AquaL&F testing

test/jdk/javax/swing/JScrollBar/DisableFrameFromScrollBar.java line 52:

> 50:     private static JFrame frame;
> 51:     private static JScrollBar bar;
> 52:     private static Robot robot;

`robot` can be local variable.

test/jdk/javax/swing/JScrollBar/DisableFrameFromScrollBar.java line 120:

> 118:                 } while(isAdjusting && !doCheck);
> 119:                 if (bar.getValue() == (bar.getMaximum() - bar.getVisibleAmount())) {
> 120:                     throw new RuntimeException("ScrollBar did't disable timer");

Suggestion:

                    throw new RuntimeException("ScrollBar didn't disable timer");

-------------

PR Review Comment: https://git.openjdk.org/jdk/pull/20346#discussion_r1717111311
PR Review Comment: https://git.openjdk.org/jdk/pull/20346#discussion_r1717104900


More information about the client-libs-dev mailing list