Skip to content

Commit

Permalink
"Show current branch only" fixed
Browse files Browse the repository at this point in the history
Fix issue #1590

Conflicts:
	GitUI/RevisionGrid.cs
  • Loading branch information
kunigaku authored and KindDragon committed Feb 21, 2013
1 parent 8639a70 commit 72fc732
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion GitUI/RevisionGrid.cs
Original file line number Diff line number Diff line change
Expand Up @@ -787,7 +787,7 @@ public void ForceRefreshRevisions()

IndexWatcher.Reset();

if (!Settings.ShowGitNotes && !LogParam.Contains(" --not --glob=notes --not"))
if (!Settings.ShowGitNotes && LogParam.Contains("--all --boundary") && !LogParam.Contains(" --not --glob=notes --not"))
LogParam = LogParam + " --not --glob=notes --not";

if (Settings.ShowGitNotes && LogParam.Contains(" --not --glob=notes --not"))
Expand Down

0 comments on commit 72fc732

Please sign in to comment.