فهرست منبع

* 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);
 begin
   aDst.ExtendedGraphemeCluster := aSrc.ExtendedGraphemeCluster;
-  aDst.Attribute := aSrc.Attribute;
+  aDst.FForegroundColor := aSrc.FForegroundColor;
+  aDst.FBackgroundColor := aSrc.FBackgroundColor;
 end;
 
 Const