Skip to content

Commit

Permalink
Robot-merge branch net223-shakhov-bugfix into net223 by Ivan.Shakhov …
Browse files Browse the repository at this point in the history
  • Loading branch information
Merge Robot committed Nov 28, 2022
2 parents 75e8eb4 + 3060834 commit c0eadd8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ private InputActionsDeclaredElement CreateDeclaredElements(IPsiSourceFile source
public IEnumerable<InputActionsDeclaredElement> GetDeclaredElements(VirtualFileSystemPath file, string name)
{
myShellLocks.AssertReadAccessAllowed();
var list = myDeclaredElements.Single(a => a.Key.GetLocation() == file).Value;
var list = myDeclaredElements.Where(a => a.Key.GetLocation() == file).SelectMany(a=>a.Value); // https://youtrack.jetbrains.com/issue/RIDER-85555/Include-inputactions-file-into-csproj-and-generate-.Player-projects
return list.Where(element => element.ShortName == name);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,9 @@ action.UnityToolbarLabel.text=Unity:
action.com.jetbrains.rider.plugins.unity.actions.ShowFileInUnityAction.text=Show in Unity
action.com.jetbrains.rider.plugins.unity.actions.ShowFileInUnityFromExplorerAction.text=Unity

group.UnityToolbarActions.text=Unity Toolbar Actions
group.NewUI_UnityToolbarActions.text=Unity Toolbar Actions Base

configurable.name.unity.engine=Unity Engine

#LogView
Expand Down

0 comments on commit c0eadd8

Please sign in to comment.