Skip to content

Commit ea7f79e

Browse files
committed
Fix CPU temperature bar graph and radial graph inverted
1 parent 8f74513 commit ea7f79e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

library/stats.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -318,8 +318,8 @@ def temperature(cls):
318318
cpu_temp_line_graph_data['SHOW'] = False
319319

320320
display_themed_temperature_value(cpu_temp_text_data, temperature)
321-
display_themed_progress_bar(cpu_temp_radial_data, temperature)
322-
display_themed_temperature_radial_bar(cpu_temp_graph_data, temperature)
321+
display_themed_progress_bar(cpu_temp_graph_data, temperature)
322+
display_themed_temperature_radial_bar(cpu_temp_radial_data, temperature)
323323
display_themed_line_graph(cpu_temp_line_graph_data, cls.last_values_cpu_temperature)
324324

325325
@classmethod

0 commit comments

Comments
 (0)