Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDuncan Mak <duncan.mak@xamarin.com>2014-08-28 02:58:03 +0400
committerLluis Sanchez <lluis@xamarin.com>2014-08-28 12:35:47 +0400
commitcc6857ea9e1f0a9b73ae91ba2651bbd65bb025d2 (patch)
treeca2a9342074ccd6d162505a7281e57f54e3cbd33
parentb47188ed2b990cf89638193d7cf0300a9a81680d (diff)
Fix the previous fix.monodevelop-5.3.0.439
We moved *away* from MacOS to Resources, but app bundles remained in MacOS. So we should be pointing to MacOS, and not Resources.
-rw-r--r--main/src/core/MonoDevelop.Ide/MonoDevelop.Ide/HelpOperations.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide/HelpOperations.cs b/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide/HelpOperations.cs
index 266b392d8e..3d9f30aa81 100644
--- a/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide/HelpOperations.cs
+++ b/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide/HelpOperations.cs
@@ -54,7 +54,7 @@ namespace MonoDevelop.Ide
if (Platform.IsMac) {
var url = topic != null ? "monodoc://" + System.Web.HttpUtility.UrlEncode (topic) : null;
- var mdapp = new FilePath (typeof (HelpOperations).Assembly.Location).ParentDirectory.Combine ("..", "..", "..", "..", "Resources", "MonoDoc.app").FullPath;
+ var mdapp = new FilePath (typeof (HelpOperations).Assembly.Location).ParentDirectory.Combine ("..", "..", "..", "..", "MacOS", "MonoDoc.app").FullPath;
if (Directory.Exists (mdapp)) {
builder.AddQuoted ("-a", mdapp, url, "--args");
AddDirArgs (builder);