Now shows SOMETHING if any call was made during an hour slot on the usage graph
This commit is contained in:
parent
ecaa0883d2
commit
9f318b735c
|
@ -611,6 +611,9 @@ Var
|
||||||
If Stats.Hourly[Count] > 0 Then Begin
|
If Stats.Hourly[Count] > 0 Then Begin
|
||||||
Temp := Stats.Hourly[Count] / Highest * 100;
|
Temp := Stats.Hourly[Count] / Highest * 100;
|
||||||
Stats.Hourly[Count] := Trunc(Temp) DIV 20;
|
Stats.Hourly[Count] := Trunc(Temp) DIV 20;
|
||||||
|
|
||||||
|
If (Stats.Hourly[Count] = 0) And (Temp > 0) Then
|
||||||
|
Stats.Hourly[Count] := 1; // Make it show at LEAST something
|
||||||
End;
|
End;
|
||||||
|
|
||||||
Close (HistFile);
|
Close (HistFile);
|
||||||
|
|
Loading…
Reference in New Issue