diff --git a/flutter-idea/src/io/flutter/performance/FlutterPerformanceViewFactory.java b/flutter-idea/src/io/flutter/performance/FlutterPerformanceViewFactory.java index fd84b1b8d1..1b28021512 100644 --- a/flutter-idea/src/io/flutter/performance/FlutterPerformanceViewFactory.java +++ b/flutter-idea/src/io/flutter/performance/FlutterPerformanceViewFactory.java @@ -68,6 +68,6 @@ public FlutterPerformanceViewListener(@NotNull Project project) { public Object isApplicableAsync(@NotNull Project project, @NotNull Continuation $completion) { FlutterSdk sdk = FlutterSdk.getFlutterSdk(project); FlutterSdkVersion sdkVersion = sdk == null ? null : sdk.getVersion(); - return sdkVersion == null || !sdkVersion.canUseDeepLinksTool(); + return sdkVersion == null || !sdkVersion.canUseDevToolsMultiEmbed(); } }