From: phillbush Date: Sat, 9 Jan 2021 22:29:08 +0000 (-0300) Subject: fixed missing lines X-Git-Url: http://git.subgeniuskitty.com/xmenu/.git/commitdiff_plain/e14d88b06cf3c918022dda03fa96dc88addffc08 fixed missing lines --- diff --git a/CHANGELOG b/CHANGELOG index 1c74335..3c20b25 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,8 @@ CHANGELOG +4.5.3 (2021-01-09) +• Fixed missing lines in xmenu.c. + 4.5.2 (2021-01-09) • Fixed missing line in xmenu.c. diff --git a/xmenu.c b/xmenu.c index 5206338..465d405 100644 --- a/xmenu.c +++ b/xmenu.c @@ -1329,6 +1329,7 @@ enteritem: case XK_ISO_Left_Tab: if (*text) { item = matchitem(currmenu, text, -1); + action = ACTION_SELECT | ACTION_DRAW; break; } /* FALLTHROUGH */ @@ -1339,6 +1340,7 @@ enteritem: case XK_Tab: if (*text) { item = matchitem(currmenu, text, 1); + action = ACTION_SELECT | ACTION_DRAW; break; } /* FALLTHROUGH */