Skip to content

Commit 8ea8af0

Browse files
authored
Use correct SDK version check for gating performance page (#7639)
Fixes error from #7637 (review) CC @kenzieschmoll
1 parent a9f433c commit 8ea8af0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

flutter-idea/src/io/flutter/performance/FlutterPerformanceViewFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,6 @@ public FlutterPerformanceViewListener(@NotNull Project project) {
6868
public Object isApplicableAsync(@NotNull Project project, @NotNull Continuation<? super Boolean> $completion) {
6969
FlutterSdk sdk = FlutterSdk.getFlutterSdk(project);
7070
FlutterSdkVersion sdkVersion = sdk == null ? null : sdk.getVersion();
71-
return sdkVersion == null || !sdkVersion.canUseDeepLinksTool();
71+
return sdkVersion == null || !sdkVersion.canUseDevToolsMultiEmbed();
7272
}
7373
}

0 commit comments

Comments
 (0)