Skip to content

Commit

Permalink
Commited Fixes #320 again, did not worn on other machine
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Deinhofer committed May 4, 2020
1 parent 6ce6cf1 commit dfeb232
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions ACS/ACS/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2585,6 +2585,7 @@ private String CreatePluginHelpQueryString(String compTypeValue, String id)
if (id == null||compTypeValue==null) return "";

if (id.Substring(0, 9) == "asterics.") id = id.Substring(9, id.Length - 9); // eleminiate prefix

//Convert first letter to upper case, to fix the problem that some plugin names start with a small capital letter.
//See: https://github.com/asterics/AsTeRICS/issues/320
id = id.Substring(0, 1).ToUpper() + id.Substring(1, id.Length-1);
Expand Down
Binary file modified bin/ACS/ACS.exe
Binary file not shown.

0 comments on commit dfeb232

Please sign in to comment.