style: shorten Del label to [Dl] to fit 25px special row cell

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Jakub
2026-05-13 21:09:37 +02:00
parent 464f5cd7a2
commit 4063c2d296

View File

@@ -79,8 +79,8 @@ struct KeyboardWidget {
}
}
// special row: [^] [Sp] [Del] [{}] [OK]
const char* spec[] = { "[^]", "[Sp]", "[Del]", "[{}]", "[OK]" };
// special row: [^] [Sp] [Dl] [{}] [OK]
const char* spec[] = { "[^]", "[Sp]", "[Dl]", "[{}]", "[OK]" };
for (int i = 0; i < KB_SPECIAL; i++) {
bool sel = (row == KB_ROWS_CHAR && col == i);
bool active = (i == 0 && caps);