Description
In ParticlesView.java line 98, the attribute pv_nodes_speed_min incorrectly reads from pv_nodes_speed_max.
Current Code
nodesSpeedMin = a.getFloat(R.styleable.ParticlesView_pv_nodes_speed_max, 1F);
Fix
nodesSpeedMin = a.getFloat(R.styleable.ParticlesView_pv_nodes_speed_min, 1F);
Impact
- Critical functionality issue
- Min speed always equals max speed value
Description
In
ParticlesView.javaline 98, the attributepv_nodes_speed_minincorrectly reads frompv_nodes_speed_max.Current Code
Fix
Impact