From 43361a0c5d7e71577d40834e414e9fc7dccbf8f4 Mon Sep 17 00:00:00 2001 From: "Nadya.Zabrodina" Date: Fri, 1 Feb 2013 19:47:34 +0400 Subject: [PATCH] IDEA-98713 Changes - Repository view never updates with Mercurial *Add colon when refresh repository view. (refresh all upwards revisions). --- .../zmlx/hg4idea/provider/HgCachingCommitedChangesProvider.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/hg4idea/src/org/zmlx/hg4idea/provider/HgCachingCommitedChangesProvider.java b/plugins/hg4idea/src/org/zmlx/hg4idea/provider/HgCachingCommitedChangesProvider.java index 1cc26ab5040c..0d1a12e9a49a 100644 --- a/plugins/hg4idea/src/org/zmlx/hg4idea/provider/HgCachingCommitedChangesProvider.java +++ b/plugins/hg4idea/src/org/zmlx/hg4idea/provider/HgCachingCommitedChangesProvider.java @@ -202,7 +202,7 @@ public class HgCachingCommitedChangesProvider implements CachingCommittedChanges if (changeBrowserSettings != null) { args = new ArrayList(); if (changeBrowserSettings.USE_CHANGE_AFTER_FILTER) { - args.add("-r " + changeBrowserSettings.getChangeAfterFilter()); + args.add("-r " + changeBrowserSettings.getChangeAfterFilter() + ":"); } } List localRevisions = hgLogCommand.execute(hgFile, maxCount == 0 ? -1 : maxCount, true, args);