From ce18c2379093f6b92dc879f9d13ae50995cfb0dc Mon Sep 17 00:00:00 2001 From: TotalCaesar659 <14265316+TotalCaesar659@users.noreply.github.com> Date: Wed, 17 Feb 2021 21:30:52 +0300 Subject: [PATCH] Fix "Enable chat" in Linux Qt build --- Qt/mainwindow.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Qt/mainwindow.h b/Qt/mainwindow.h index cdc08ca196..2a9660d744 100644 --- a/Qt/mainwindow.h +++ b/Qt/mainwindow.h @@ -184,7 +184,11 @@ private slots: void cheatsAct() { g_Config.bEnableCheats = !g_Config.bEnableCheats; } // Chat - void chatAct() { NativeMessageReceived("chat screen", ""); } + void chatAct() { + g_Config.bEnableNetworkChat = true; + updateMenus(); + NativeMessageReceived("chat screen", ""); + } void fullscrAct(); void raiseTopMost();