diff --git a/MetersPanel.c b/MetersPanel.c index fa5300e9..c76603f3 100644 --- a/MetersPanel.c +++ b/MetersPanel.c @@ -31,7 +31,9 @@ struct MetersPanel_ { }*/ -static const char* MetersFunctions[] = {"Type ", "Move ", "Delete", "Done ", NULL}; +// Note: In code the meters are known to have bar/text/graph "Modes", but in UI +// we call them "Styles". +static const char* MetersFunctions[] = {"Style ", "Move ", "Delete", "Done ", NULL}; static const char* MetersKeys[] = {"Space", "Enter", "Del", "Esc"}; static int MetersEvents[] = {' ', 13, KEY_DC, 27}; diff --git a/MetersPanel.h b/MetersPanel.h index 1736dfb4..b012869f 100644 --- a/MetersPanel.h +++ b/MetersPanel.h @@ -27,6 +27,8 @@ struct MetersPanel_ { }; +// Note: In code the meters are known to have bar/text/graph "Modes", but in UI +// we call them "Styles". void MetersPanel_setMoving(MetersPanel* this, bool moving);