Fix Tracer maxSize Optimization
Dieser Commit ist enthalten in:
Ursprung
6745dfe3c1
Commit
0b13700a3a
@ -281,7 +281,7 @@ public class ShowManager {
|
|||||||
if (showSelection == ShowSelection.ALL) size = TraceManager.get().size();
|
if (showSelection == ShowSelection.ALL) size = TraceManager.get().size();
|
||||||
if (showSelection == ShowSelection.SELECTIVE) size = selected.size();
|
if (showSelection == ShowSelection.SELECTIVE) size = selected.size();
|
||||||
if (size == 0) return maxRadius;
|
if (size == 0) return maxRadius;
|
||||||
if (size >= 525) return minRadius;
|
if (size >= 950) return minRadius;
|
||||||
|
|
||||||
double slope = -(size / slopeHeight) + 85;
|
double slope = -(size / slopeHeight) + 85;
|
||||||
return Math.min(Math.max(slope, minRadius), maxRadius);
|
return Math.min(Math.max(slope, minRadius), maxRadius);
|
||||||
|
In neuem Issue referenzieren
Einen Benutzer sperren