Implement console chat visibility controls

Agent-Logs-Url: https://github.com/MCCTeam/Minecraft-Console-Client/sessions/159bd460-7950-4afe-9e69-4892220665e1

Co-authored-by: milutinke <441903+milutinke@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot] 2026-05-04 11:17:45 +00:00 committed by GitHub
parent 9c994de2ee
commit 7bf342baab
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
14 changed files with 226 additions and 2 deletions

View file

@ -1122,6 +1122,8 @@ namespace MinecraftClient
public void OnSettingUpdate()
{
ConsoleIO.ChatVisible = General.Display_Chat;
var backend = ConsoleIO.Backend;
if (backend == null) return;
@ -1225,6 +1227,9 @@ namespace MinecraftClient
[TomlInlineComment("$Console.General.Display_Input$")]
public bool Display_Input = true;
[TomlInlineComment("$Console.General.Display_Chat$")]
public bool Display_Chat = true;
[TomlInlineComment("$Console.General.History_Input_Records$")]
public int History_Input_Records = 32;