1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-07-12 19:26:00 +02:00

Minor workspace folder tweaks

This commit is contained in:
Brian Fiete 2022-01-18 12:01:56 -05:00
parent 7cea21af97
commit 3bb7f72116
2 changed files with 10 additions and 13 deletions

View file

@ -957,8 +957,10 @@ namespace Beefy.widgets
}
triedMove = true;
case KeyCode.Down:
if (selectedItem.IsOpen)
if ((selectedItem.IsOpen) && (!selectedItem.mChildItems.IsEmpty))
{
newSelection = selectedItem.mChildItems[0];
}
else
{
while (selectedItem != mRoot)