diff --git a/ChatTwo/Ui/ChatLogWindow.cs b/ChatTwo/Ui/ChatLogWindow.cs index 2845b39..296bd41 100644 --- a/ChatTwo/Ui/ChatLogWindow.cs +++ b/ChatTwo/Ui/ChatLogWindow.cs @@ -1503,6 +1503,19 @@ public sealed class ChatLogWindow : Window AutoCompleteShouldScroll = true; return 1; + + default: + if(ImGui.IsKeyPressed(ImGuiKey.Tab)) + { + if (AutoCompleteSelection == AutoCompleteList.Count - 1) + AutoCompleteSelection = 0; + else + AutoCompleteSelection++; + + AutoCompleteShouldScroll = true; + return 1; + } + break; } return 0;