Skip to content

Commit

Permalink
Merge pull request #1645 from kunigaku/fix_1590
Browse files Browse the repository at this point in the history
Fix Issue #1590 "Show current branch only"
  • Loading branch information
KindDragon committed Feb 21, 2013
2 parents e1d902d + 17efa17 commit 52a9d0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion GitUI/UserControls/RevisionGrid.cs
Original file line number Diff line number Diff line change
Expand Up @@ -797,7 +797,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 52a9d0f

Please sign in to comment.