diff --git a/Tools/rdmp/CommandLine/Gui/ConsoleGuiSqlEditor.cs b/Tools/rdmp/CommandLine/Gui/ConsoleGuiSqlEditor.cs index b8340565a5..49e9421b88 100644 --- a/Tools/rdmp/CommandLine/Gui/ConsoleGuiSqlEditor.cs +++ b/Tools/rdmp/CommandLine/Gui/ConsoleGuiSqlEditor.cs @@ -397,11 +397,18 @@ public SqlTextView() } + // These are renamed in 1.8.2 of Terminal.Gui. But we cannot upgrade because of this issue: + // https://github.com/HicServices/RDMP/pull/1448 . Do not upgrade until you can test the + // Sql Editor performs correctly in the version you are updating to. Everything works great + // in 1.7.2 so lets stick with that for now + + // protected override void SetNormalColor() protected override void ColorNormal() { Driver.SetAttribute(_white); } + // protected override void SetNormalColor(List line, int idx) protected override void ColorNormal(List line, int idx) { Driver.SetAttribute(IsKeyword(line, idx) ? _blue : _white);