1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-18 16:10:26 +02:00

Show more shortcuts in right-click menus

This commit is contained in:
Brian Fiete 2022-07-02 12:09:10 -07:00
parent 52897cc936
commit 066a83e60b
4 changed files with 25 additions and 10 deletions

View file

@ -90,10 +90,11 @@ namespace IDE
{
if (mParent == null)
return;
int startIdx = strBuffer.Length;
mParent.ToString(strBuffer);
if (mBoundKeyState != null)
{
if (!strBuffer.IsEmpty)
if (strBuffer.Length > startIdx)
strBuffer.Append(", ");
mBoundKeyState.ToString(strBuffer);
}