Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
QilongTang committed Feb 6, 2024
1 parent 2a65da0 commit 5ec597a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/DynamoCore/Configuration/PreferenceSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1147,7 +1147,7 @@ internal static string GetDefaultPythonEngine()
internal void InitializeNamespacesToExcludeFromLibrary()
{
// When the experiment toggle is disabled by feature flag, include the TSpline namespace from the library OOTB.
if (!DynamoModel.FeatureFlags?.CheckFeatureFlag("IsTSplineNodesExperimentToggleVisible", false) ?? false)
if (!DynamoModel.FeatureFlags?.CheckFeatureFlag("IsTSplineNodesExperimentToggleVisible", false) ?? true)
{
NamespacesToExcludeFromLibrary.Remove(
"ProtoGeometry.dll:Autodesk.DesignScript.Geometry.TSpline"
Expand Down
2 changes: 1 addition & 1 deletion src/DynamoCoreWpf/ViewModels/Menu/PreferencesViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1122,7 +1122,7 @@ public bool NodeAutocompleteMachineLearningIsBeta
}

/// <summary>
/// Controls if the the Node autocomplete Machine Learning option is beta from feature flag
/// Controls if the TSpline nodes experiment toggle is visible from feature flag
/// </summary>
public bool IsTSplineNodesExperimentToggleVisible
{
Expand Down

0 comments on commit 5ec597a

Please sign in to comment.