Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Navid200 committed Oct 10, 2024
1 parent 1275bbd commit 7b92e14
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ public void toggleStatisticsShowAbsolutes(MenuItem m) // Toggle visibility of ab
updateMenuChecked();
}

public void toggleStatisticsShowMedianBG(MenuItem m) // Toggle visibility of absolute numbers
public void toggleStatisticsShowMedianBG(MenuItem m) // Toggle visibility of median
{
Pref.toggleBoolean(SHOW_STATISTICS_Median_BG);
evaluateColors(true);
Expand All @@ -357,14 +357,14 @@ public void toggleStatisticsShowA1C(MenuItem m) // Toggle visibility of estimate
updateMenuChecked();
}

public void toggleStatisticsShowRelSD(MenuItem m) // Toggle visibility of estimated A1C
public void toggleStatisticsShowRelSD(MenuItem m) // Toggle visibility of relative standard deviation
{
Pref.toggleBoolean(SHOW_STATISTICS_Rel_SD);
evaluateColors(true);
updateMenuChecked();
}

public void toggleStatisticsShowGVI(MenuItem m) // Toggle visibility of PGS
public void toggleStatisticsShowGVI(MenuItem m) // Toggle visibility of GVI
{
Pref.toggleBoolean(SHOW_STATISTICS_GVI);
evaluateColors(true);
Expand Down

0 comments on commit 7b92e14

Please sign in to comment.