mirror of
https://github.com/JFormDesigner/FlatLaf.git
synced 2026-02-10 22:17: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" );
|
||||
|
||||
animator = new Animator( duration, fraction -> {
|
||||
if( !scrollbar.isShowing() ) {
|
||||
if( scrollbar == null || !scrollbar.isShowing() ) {
|
||||
animator.cancel();
|
||||
return;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user