Skip to content

Commit

Permalink
fix painter
Browse files Browse the repository at this point in the history
  • Loading branch information
mebitek committed Jan 8, 2024
1 parent 778c416 commit 0cb64f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/apps/sequencer/ui/painters/SequencePainter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ void SequencePainter::drawStageRepeatMode(Canvas &canvas, int x, int y, int w, i

for (int i = 0; i < 4; i++) {
if (mode == NoteSequence::StageRepeatMode::Random) {
canvas.drawTextCentered(x,y, x+6, h, "????");
canvas.drawText(x-1, y+4, "????");
} else {
if (((enabled >> i) & mask) == 1) {
canvas.vline(x + 2 * i, y, h);
Expand Down

0 comments on commit 0cb64f2

Please sign in to comment.