Explorar o código

* copy operator of TEnhancedVideoCell now copies the 8-bit foreground and background colors

Nikolay Nikolov %!s(int64=3) %!d(string=hai) anos
pai
achega
3eae0213be
Modificáronse 1 ficheiros con 2 adicións e 1 borrados
  1. 2 1
      packages/rtl-console/src/inc/video.inc

+ 2 - 1
packages/rtl-console/src/inc/video.inc

@@ -113,7 +113,8 @@ end;
 class operator TEnhancedVideoCell.Copy(constref aSrc: TEnhancedVideoCell; var aDst: TEnhancedVideoCell);
 begin
   aDst.ExtendedGraphemeCluster := aSrc.ExtendedGraphemeCluster;
-  aDst.Attribute := aSrc.Attribute;
+  aDst.FForegroundColor := aSrc.FForegroundColor;
+  aDst.FBackgroundColor := aSrc.FBackgroundColor;
 end;
 
 Const