UnknownSdkEditorNotification - tune download message

GitOrigin-RevId: bbb86cfb481fd25dbe562d94e2f282ea60afe6f3
This commit is contained in:
Eugene Petrenko
2019-12-18 22:37:16 +00:00
committed by intellij-monorepo-bot
parent 4945554109
commit af419f09be
@@ -64,7 +64,7 @@ public class UnknownSdkEditorNotification implements Disposable {
panel.setText(sdkTypeName + " \"" + sdkName + "\" is missing");
if (fix != null && unknownSdk != null) {
panel.createActionLabel("Download " + sdkTypeName + " (" + fix.getDownloadDescription() + ")", () -> {
panel.createActionLabel("Download " + fix.getDownloadDescription(), () -> {
removeNotification(panel);
UnknownSdkTracker.getInstance(myProject).applyDownloadableFix(unknownSdk, fix);
});