Fix cells not updated with non-ascii text

This commit is contained in:
2023-08-20 07:00:07 +02:00
parent ac2a34d897
commit 570ecd3f83

View File

@@ -1,4 +1,4 @@
using System.Buffers;
using System.Buffers;
using System.Collections.ObjectModel;
using System.ComponentModel;
using System.Diagnostics;
@@ -273,8 +273,8 @@ public abstract partial class View<TConcrete, T> : IView<T> where TConcrete : Vi
throw new Exception("Control character");
}
if (updateCellsOnly) continue;
UpdateCells(renderContext.UpdatedCells, currentPosition, text.Length, 1);
if (updateCellsOnly) continue;
try
{