File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed
java/com/reallyliri/plugins/interfacepairing Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ instrumentCode {
1616}
1717
1818group ' com.reallyliri.plugins'
19- version ' 1.1 '
19+ version ' 1.2 '
2020
2121sourceCompatibility = 1.8
2222
Original file line number Diff line number Diff line change 66import com .jetbrains .rider .model .RdProjectFileDescriptor ;
77import com .jetbrains .rider .projectView .nodes .ProjectModelNode ;
88import com .jetbrains .rider .projectView .views .solutionExplorer .SolutionExplorerCustomization ;
9+ import java .awt .EventQueue ;
910import java .util .ArrayList ;
1011import java .util .List ;
1112import java .util .Map ;
@@ -23,7 +24,9 @@ public InterfacePairingSolutionExplorerCustomization(@NotNull Project project) {
2324 @ NotNull
2425 @ Override
2526 public List <AbstractTreeNode <?>> getChildren (@ NotNull ProjectModelNode parentNode ) {
26- setInterfacePairingSortKeys (parentNode );
27+ if (!EventQueue .isDispatchThread ()) {
28+ setInterfacePairingSortKeys (parentNode );
29+ }
2730 return super .getChildren (parentNode ); // always returns empty, but its fine
2831 }
2932
Original file line number Diff line number Diff line change 22 <id >com.reallyliri.plugins.interfacepairing</id >
33 <name >Interface Pairing</name >
44 <vendor url =" https://github.com/reallyliri" >ReallyLiri</vendor >
5- <version >1.1 </version >
5+ <version >1.2 </version >
66 <idea-version since-build =" *" />
77
88 <description >Pairing C# interface files with implementations files in solution explorer for a better display experience.</description >
You can’t perform that action at this time.
0 commit comments