Fix T70591: missing letters in statusbar keymap display after recent changes

This commit is contained in:
Brecht Van Lommel 2019-10-07 17:55:14 +02:00
parent d7465c23c7
commit b91290fd2a
Notes: blender-bot 2023-02-14 08:38:14 +01:00
Referenced by issue #70591, Event_/Letter icons empty
1 changed files with 2 additions and 2 deletions

View File

@ -171,11 +171,11 @@ void icon_draw_rect_input(float x,
const bool simple_text = false;
if ((event_type >= AKEY) && (ZKEY <= event_type)) {
if ((event_type >= AKEY) && (event_type <= ZKEY)) {
char str[2] = {'A' + (event_type - AKEY), '\0'};
icon_draw_rect_input_default_text(&rect, color, margin, str);
}
else if ((event_type >= F1KEY) && (F12KEY <= event_type)) {
else if ((event_type >= F1KEY) && (event_type <= F12KEY)) {
char str[4];
SNPRINTF(str, "F%d", 1 + (event_type - F1KEY));
icon_draw_rect_input_default_text(&rect, color, margin, str);