A simple .NET Framework to make 2D games quick and easy.

Fixed autocomplete offset

Changed files
+1 -1
src
+1 -1
src/Debug/ConsoleScene.cs
··· 139 139 { 140 140 foreach(var i in Debug.commands.Keys.ToList().Where((command) => command.Contains(consoleInput))) 141 141 { 142 - FUI.ButtonExt(new Vector2(10, WindowSize.Y - 40 - height - 60), i, () => {consoleInput = i + " ";}, out Vector2 bSize); 142 + FUI.ButtonExt(new Vector2(10, WindowSize.Y - 40 - height - 55), i, () => {consoleInput = i + " ";}, out Vector2 bSize); 143 143 height += bSize.Y; 144 144 } 145 145 }