We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c87d15 commit 5f67027Copy full SHA for 5f67027
dotnet/src/dotnetframework/GxClasses/Core/GXApplication.cs
@@ -3840,7 +3840,7 @@ Hashtable Images
3840
string imagePath = parts[4];
3841
string intExt = parts[3];
3842
if (intExt[0] != 'E' && intExt[0] != 'e' && !Path.IsPathRooted(imagePath) && !imagePath.ToLower().StartsWith("http:"))
3843
- imagePath = imgDir + KBPrefix + "Resources/" + imagePath;
+ imagePath = Path.Combine(imgDir, KBPrefix + "Resources", imagePath);
3844
string parts12 = '_' + parts[1] + '_' + parts[2];
3845
3846
m_images[KBPrefix + parts[0] + parts12] = imagePath;
0 commit comments