Skip to content

Commit

Permalink
Merge pull request #6238 from RussKie/fix_6200_QuickPull_hotkey_not_w…
Browse files Browse the repository at this point in the history
…orking

fix: QuickPull menu hotkey not working
  • Loading branch information
RussKie committed Feb 11, 2019
2 parents 67ebe9c + 77db058 commit 23b6f51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion GitUI/CommandsDialogs/FormBrowse.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2170,7 +2170,7 @@ protected override bool ExecuteCommand(int cmd)
case Command.FindFileInSelectedCommit: FindFileInSelectedCommit(); break;
case Command.CheckoutBranch: CheckoutBranchToolStripMenuItemClick(null, null); break;
case Command.QuickFetch: QuickFetch(); break;
case Command.QuickPull: ToolStripButtonPullClick(null, null); break;
case Command.QuickPull: mergeToolStripMenuItem_Click(null, null); break;
case Command.QuickPush: UICommands.StartPushDialog(this, true); break;
case Command.CloseRepository: CloseToolStripMenuItemClick(null, null); break;
case Command.Stash: UICommands.StashSave(this, AppSettings.IncludeUntrackedFilesInManualStash); break;
Expand Down

0 comments on commit 23b6f51

Please sign in to comment.