Skip to content

Commit a570550

Browse files
committed
Fixed setTextColor invocation
1 parent 997ce5f commit a570550

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/mykeyboard.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -536,7 +536,7 @@ String generalKeyboard(
536536

537537
// Prints the chars counter
538538
tft.setTextSize(FP);
539-
tft.setTextColor(getComplementaryColor2(bruceConfig.bgColor), bruceConfig.bgColor, true);
539+
tft.setTextColor(getComplementaryColor2(bruceConfig.bgColor), bruceConfig.bgColor);
540540
String chars_counter = String(current_text.length()) + "/" + String(max_size);
541541
tft.fillRect(
542542
tftWidth - ((chars_counter.length() * 6) + 20), // 5px per char + 1 padding

0 commit comments

Comments
 (0)