diff --git a/platform/vcs-impl/src/com/intellij/openapi/vcs/actions/DiffActionExecutor.java b/platform/vcs-impl/src/com/intellij/openapi/vcs/actions/DiffActionExecutor.java index a888c2503f68..6e43f994fb7a 100644 --- a/platform/vcs-impl/src/com/intellij/openapi/vcs/actions/DiffActionExecutor.java +++ b/platform/vcs-impl/src/com/intellij/openapi/vcs/actions/DiffActionExecutor.java @@ -99,7 +99,8 @@ public abstract class DiffActionExecutor { final Ref requestRef = new Ref(); final Task.Backgroundable task = new Task.Backgroundable(myProject, - VcsBundle.message("show.diff.progress.title.detailed", mySelectedFile.getPath()), true, BackgroundFromStartOption.getInstance()) { + VcsBundle.message("show.diff.progress.title.detailed", mySelectedFile.getPresentableUrl()), + true, BackgroundFromStartOption.getInstance()) { public void run(@NotNull ProgressIndicator indicator) { final VcsRevisionNumber revisionNumber = getRevisionNumber();