1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-20 08:58:00 +02:00

Fixed crash when pressing F2 on Workspace item in project panel

This commit is contained in:
Brian Fiete 2020-09-25 09:32:42 -07:00
parent 9893cb9627
commit f41a4b0173

View file

@ -1838,6 +1838,7 @@ namespace IDE.ui
{
ProjectItem projectItem;
mListViewToProjectMap.TryGetValue(selectedListViewItem, out projectItem);
if (projectItem != null)
RenameItem(projectItem);
}
}