fixed missing lines

This commit is contained in:
phillbush 2021-01-09 19:29:08 -03:00
parent 289de21f8e
commit e14d88b06c
2 changed files with 5 additions and 0 deletions

View File

@ -1,5 +1,8 @@
CHANGELOG CHANGELOG
4.5.3 (2021-01-09)
• Fixed missing lines in xmenu.c.
4.5.2 (2021-01-09) 4.5.2 (2021-01-09)
• Fixed missing line in xmenu.c. • Fixed missing line in xmenu.c.

View File

@ -1329,6 +1329,7 @@ enteritem:
case XK_ISO_Left_Tab: case XK_ISO_Left_Tab:
if (*text) { if (*text) {
item = matchitem(currmenu, text, -1); item = matchitem(currmenu, text, -1);
action = ACTION_SELECT | ACTION_DRAW;
break; break;
} }
/* FALLTHROUGH */ /* FALLTHROUGH */
@ -1339,6 +1340,7 @@ enteritem:
case XK_Tab: case XK_Tab:
if (*text) { if (*text) {
item = matchitem(currmenu, text, 1); item = matchitem(currmenu, text, 1);
action = ACTION_SELECT | ACTION_DRAW;
break; break;
} }
/* FALLTHROUGH */ /* FALLTHROUGH */