mirror of
https://github.com/JFormDesigner/FlatLaf.git
synced 2026-02-13 23:37:13 -06:00
ScrollBar: fixed NPE when switching LaF while smooth scrolling animation is running (issue #50)
This commit is contained in:
@@ -510,7 +510,7 @@ public class FlatScrollBarUI
|
|||||||
Object interpolator = UIManager.get( "ScrollPane.smoothScrolling.interpolator" );
|
Object interpolator = UIManager.get( "ScrollPane.smoothScrolling.interpolator" );
|
||||||
|
|
||||||
animator = new Animator( duration, fraction -> {
|
animator = new Animator( duration, fraction -> {
|
||||||
if( !scrollbar.isShowing() ) {
|
if( scrollbar == null || !scrollbar.isShowing() ) {
|
||||||
animator.cancel();
|
animator.cancel();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user