Skip to content

Commit b2e86aa

Browse files
committed
Meters: visually hint where "Move" clickable area ends
Each "button" in the function bar is a clickable area. By adding a visible boundary to the "dead space" in the function bar, we make it clear where the clickable area for the previous button ends.
1 parent 658926e commit b2e86aa

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

MetersPanel.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ in the source distribution for its full text.
2222

2323
// Note: In code the meters are known to have bar/text/graph "Modes", but in UI
2424
// we call them "Styles".
25-
static const char* const MetersFunctions[] = {"Style ", "Move ", " ", "Delete", "Done ", NULL};
26-
static const char* const MetersKeys[] = {"Space", "Enter", "", "Del", "F10"};
25+
static const char* const MetersFunctions[] = {"Style ", "Move ", " ", "Delete", "Done ", NULL};
26+
static const char* const MetersKeys[] = {"Space", "Enter", " ", "Del", "F10"};
2727
static const int MetersEvents[] = {' ', 13, ERR, KEY_DC, KEY_F(10)};
2828

2929
// We avoid UTF-8 arrows ← → here as they might display full-width on Chinese

0 commit comments

Comments
 (0)