Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
braunms committed Aug 25, 2023
1 parent 12a1748 commit 1aae05b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion Core/GUI/Windows/WindowBranch.cs
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ private void delete_childbranch(WindowBranch delete_child)
clear_content(_content);
clear_content(kept_child._content);

if ((kept_child._children.Item1 != null) && (kept_child._children.Item2 != null))
if ((kept_child._children != null) && (kept_child._children.Item1 != null) && (kept_child._children.Item2 != null))
{
_children = new Tuple<WindowBranch, WindowBranch>(kept_child._children.Item1, kept_child._children.Item2);

Expand Down
1 change: 0 additions & 1 deletion Visualizations/Types/DEBUGColumns.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@
using Visualizations.Management;
using SciChart.Core.Utility.Mouse;
using SciChart.Charting.ChartModifiers;
using SciChart.Charting3D.Model;



Expand Down

0 comments on commit 1aae05b

Please sign in to comment.