V9.71
This commit is contained in:
f1iwq2
2025-01-02 12:26:41 +01:00
parent 02eccff67e
commit 4f3aff148a
32 changed files with 7143 additions and 1843 deletions

View File

@@ -98,7 +98,8 @@ var c : tcomponent;
i : integer;
fond,texte : tColor;
begin
if sombre then
{$IF CompilerVersion < 28.0}
if Modesombre then
begin
fond:=couleurFond;
texte:=couleurTexte;
@@ -111,6 +112,8 @@ begin
composant(c,fond,texte);
end;
end;
{$IFEND}
end;
@@ -337,12 +340,12 @@ begin
// couleur de fond
couleur:=$E0E0E0;
if d12 then couleur:=$505050;
if d12 then couleur:=canvas.Pixels[1,1];
with grid.canvas do
begin
Brush.Color := couleur;
inc(Rect.top); inc(Rect.left); // rend visible les quadrillages
FillRect(Rect);
font.Color:=clBlack; // couleur de la fonte
end;
DRect:=Rect;