fix missing assignment

This commit is contained in:
phillbush 2021-01-09 19:25:06 -03:00
parent cbf67e5a45
commit 289de21f8e
2 changed files with 4 additions and 0 deletions

View File

@ -1,5 +1,8 @@
CHANGELOG CHANGELOG
4.5.2 (2021-01-09)
• Fixed missing line in xmenu.c.
4.5.1 (2021-01-09) 4.5.1 (2021-01-09)
• Fixed SHIFT key; it cleared the selection, now it doesn't. • Fixed SHIFT key; it cleared the selection, now it doesn't.

View File

@ -1383,6 +1383,7 @@ append:
break; break;
text[0] = '\0'; text[0] = '\0';
} }
action = ACTION_SELECT | ACTION_DRAW;
break; break;
} }
select = item; select = item;