Skip to content

Commit

Permalink
fixed missing lines
Browse files Browse the repository at this point in the history
  • Loading branch information
phillbush committed Jan 9, 2021
1 parent 289de21 commit e14d88b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -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.

Expand Down
2 changes: 2 additions & 0 deletions xmenu.c
Original file line number Diff line number Diff line change
Expand Up @@ -1329,6 +1329,7 @@ run(struct Menu *currmenu)
case XK_ISO_Left_Tab:
if (*text) {
item = matchitem(currmenu, text, -1);
action = ACTION_SELECT | ACTION_DRAW;
break;
}
/* FALLTHROUGH */
Expand All @@ -1339,6 +1340,7 @@ run(struct Menu *currmenu)
case XK_Tab:
if (*text) {
item = matchitem(currmenu, text, 1);
action = ACTION_SELECT | ACTION_DRAW;
break;
}
/* FALLTHROUGH */
Expand Down

0 comments on commit e14d88b

Please sign in to comment.