File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
resharper/resharper-unity/src/Unity/InputActions/Psi/Caches
rider/src/main/resources/messages Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -122,7 +122,7 @@ private InputActionsDeclaredElement CreateDeclaredElements(IPsiSourceFile source
122
122
public IEnumerable < InputActionsDeclaredElement > GetDeclaredElements ( VirtualFileSystemPath file , string name )
123
123
{
124
124
myShellLocks . AssertReadAccessAllowed ( ) ;
125
- var list = myDeclaredElements . Single ( a => a . Key . GetLocation ( ) == file ) . Value ;
125
+ 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
126
126
return list . Where ( element => element . ShortName == name ) ;
127
127
}
128
128
Original file line number Diff line number Diff line change @@ -56,6 +56,9 @@ action.UnityToolbarLabel.text=Unity:
56
56
action.com.jetbrains.rider.plugins.unity.actions.ShowFileInUnityAction.text =Show in Unity
57
57
action.com.jetbrains.rider.plugins.unity.actions.ShowFileInUnityFromExplorerAction.text =Unity
58
58
59
+ group.UnityToolbarActions.text =Unity Toolbar Actions
60
+ group.NewUI_UnityToolbarActions.text =Unity Toolbar Actions Base
61
+
59
62
configurable.name.unity.engine =Unity Engine
60
63
61
64
# LogView
You can’t perform that action at this time.
0 commit comments