Browse Source

Fixed "TortoiseGit not found" message

pull/2/head
Daniel Grunwald 15 years ago
parent
commit
7a9076570c
  1. 2
      src/AddIns/VersionControl/GitAddIn/Src/GitGuiWrapper.cs

2
src/AddIns/VersionControl/GitAddIn/Src/GitGuiWrapper.cs

@ -44,7 +44,7 @@ namespace ICSharpCode.GitAddIn @@ -44,7 +44,7 @@ namespace ICSharpCode.GitAddIn
{
string path = GetPathFromRegistry("ProcPath");
if (path == null) {
using (var dlg = new ToolNotFoundDialog("${res:AddIns.Git.TortoiseGitRequired}", "http://code.google.com/p/tortoisegit/")) {
using (var dlg = new ToolNotFoundDialog(StringParser.Parse("${res:AddIns.Git.TortoiseGitRequired}"), "http://code.google.com/p/tortoisegit/")) {
dlg.ShowDialog(WorkbenchSingleton.MainWin32Window);
}
} else {

Loading…
Cancel
Save