Преглед на файлове

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

Nikolay Nikolov преди 3 години
родител
ревизия
3eae0213be
променени са 1 файла, в които са добавени 2 реда и са изтрити 1 реда
  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);
 class operator TEnhancedVideoCell.Copy(constref aSrc: TEnhancedVideoCell; var aDst: TEnhancedVideoCell);
 begin
 begin
   aDst.ExtendedGraphemeCluster := aSrc.ExtendedGraphemeCluster;
   aDst.ExtendedGraphemeCluster := aSrc.ExtendedGraphemeCluster;
-  aDst.Attribute := aSrc.Attribute;
+  aDst.FForegroundColor := aSrc.FForegroundColor;
+  aDst.FBackgroundColor := aSrc.FBackgroundColor;
 end;
 end;
 
 
 Const
 Const