Skip to content

Commit

Permalink
CNX-599 - ETABS Sending Multiple Load Combination Results (#3636)
Browse files Browse the repository at this point in the history
ResultsConverter - Trim Leading White Space

Co-authored-by: Jedd Morgan <[email protected]>
Co-authored-by: Alan Rynne <[email protected]>
  • Loading branch information
3 people authored Oct 15, 2024
1 parent 0230748 commit fa2d92e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ConnectorCSI/ConnectorETABS/ConnectorETABS.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<AssemblyName>SpeckleConnectorCSI</AssemblyName>
<TargetFramework>net48</TargetFramework>
<StartAction>Program</StartAction>
<StartProgram>C:\Program Files\Computers and Structures\ETABS 19\ETABS.exe</StartProgram>
<StartProgram>C:\Program Files\Computers and Structures\ETABS 21\ETABS.exe</StartProgram>
<PlatformTarget>x64</PlatformTarget>
<AssemblyTitle>ConnectorETABS</AssemblyTitle>
<Product>ConnectorETABS</Product>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ public static void SetLoadCombinationsForResults(cSapModel sapModel, Dictionary<
loadCasesCommaSeparated = string.Empty;
}

string[] loadCases = loadCasesCommaSeparated.Split(',');
string[] loadCases = loadCasesCommaSeparated.Split(',').Select(s => s.TrimStart()).ToArray();

var numberOfLoadCombinations = 0;
var loadCombinationNames = Array.Empty<string>();
Expand Down

0 comments on commit fa2d92e

Please sign in to comment.