Browse Source

Last id wasn't used

Jean-David Moisan 2 years ago
parent
commit
fb75fcf4ed
1 changed files with 0 additions and 1 deletions
  1. 0 1
      Source/IMGUI.cs

+ 0 - 1
Source/IMGUI.cs

@@ -403,7 +403,6 @@ namespace Apos.Gui {
         private Stack<(IParent Parent, int MaxChildren, int ChildrenCount)> _parents = new Stack<(IParent, int, int)>();
         private Dictionary<int, IComponent> _activeComponents = new Dictionary<int, IComponent>();
         private Queue<(int Id, IParent Parent, IComponent Component)> _pendingComponents = new Queue<(int, IParent, IComponent)>();
-        private int _lastId = 0;
         private int? Focus {
             get => _focus;
             set {