Skip to content

Commit

Permalink
Fix on 'Pick Points'
Browse files Browse the repository at this point in the history
  • Loading branch information
kike-garbo committed Aug 11, 2023
1 parent 59fdff3 commit 4c6028e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/RhinoInside.Revit.GH/Components/Input/PickPoints.cs
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ public PickPoints() : base
readonly GH_Structure<GH_Plane> Planes = new GH_Structure<GH_Plane>();
readonly GH_Structure<GH_Point> Points = new GH_Structure<GH_Point>();

readonly SortedList<ARDB.Document, ARDB.TransactionGroup> TransactionGroups = new SortedList<ARDB.Document, ARDB.TransactionGroup>();
readonly Dictionary<ARDB.Document, ARDB.TransactionGroup> TransactionGroups = new Dictionary<ARDB.Document, ARDB.TransactionGroup>();

private void StartTransactionGroup(ARDB.Document document)
{
Expand Down

0 comments on commit 4c6028e

Please sign in to comment.