diff --git a/AetherBags/Nodes/Layout/DeferrableLayoutListNode.cs b/AetherBags/Nodes/Layout/DeferrableLayoutListNode.cs index e9632e7..3c5f43d 100644 --- a/AetherBags/Nodes/Layout/DeferrableLayoutListNode.cs +++ b/AetherBags/Nodes/Layout/DeferrableLayoutListNode.cs @@ -78,7 +78,6 @@ public abstract class DeferrableLayoutListNode : SimpleComponentNode } } - [Obsolete] protected virtual void AdjustNode(NodeBase node) { } protected abstract void InternalRecalculateLayout(); diff --git a/AetherBags/Nodes/Layout/WrappingGridNode.cs b/AetherBags/Nodes/Layout/WrappingGridNode.cs index d116f21..83a11fd 100644 --- a/AetherBags/Nodes/Layout/WrappingGridNode.cs +++ b/AetherBags/Nodes/Layout/WrappingGridNode.cs @@ -30,9 +30,9 @@ public sealed class WrappingGridNode : DeferrableLayoutListNode where T : Nod private float _lastVSpace = float.NaN; private float _lastTopPadding = float.NaN; private float _lastBottomPadding = float.NaN; - private bool _lastuseCompactPacking; - private bool _lastpreferLargestFit; - private bool _lastuseStableInsert; + private bool _lastUseCompactPacking; + private bool _lastPreferLargestFit; + private bool _lastUseStableInsert; private int _lastCompactLookahead; private int[] _orderScratch = Array.Empty(); @@ -977,9 +977,9 @@ public sealed class WrappingGridNode : DeferrableLayoutListNode where T : Nod NearlyEqual(_lastVSpace, VerticalSpacing) && NearlyEqual(_lastTopPadding, TopPadding) && NearlyEqual(_lastBottomPadding, BottomPadding) && - _lastuseCompactPacking == System.Config.General.CompactPackingEnabled && - _lastpreferLargestFit == System.Config.General.CompactPreferLargestFit && - _lastuseStableInsert == System.Config.General.CompactStableInsert && + _lastUseCompactPacking == System.Config.General.CompactPackingEnabled && + _lastPreferLargestFit == System.Config.General.CompactPreferLargestFit && + _lastUseStableInsert == System.Config.General.CompactStableInsert && _lastCompactLookahead == System.Config.General.CompactLookahead; } @@ -992,9 +992,9 @@ public sealed class WrappingGridNode : DeferrableLayoutListNode where T : Nod _lastTopPadding = TopPadding; _lastBottomPadding = BottomPadding; - _lastuseCompactPacking = System.Config.General.CompactPackingEnabled; - _lastpreferLargestFit = System.Config.General.CompactPreferLargestFit; - _lastuseStableInsert = System.Config.General.CompactStableInsert; + _lastUseCompactPacking = System.Config.General.CompactPackingEnabled; + _lastPreferLargestFit = System.Config.General.CompactPreferLargestFit; + _lastUseStableInsert = System.Config.General.CompactStableInsert; _lastCompactLookahead = System.Config.General.CompactLookahead; }