diff options
author | Graeme Geldenhuys <graemeg@gmail.com> | 2013-05-29 12:22:50 +0100 |
---|---|---|
committer | Graeme Geldenhuys <graemeg@gmail.com> | 2013-05-29 12:22:50 +0100 |
commit | 4545eaf7235b03796b939a9a0b1ea24dd0b0a67f (patch) | |
tree | 2ffb51a18620823b0cd46a15c0c3b7f3f1f3a165 /examples | |
parent | a1cb5546dee095bc864d18072f117040eb380d94 (diff) | |
download | fpGUI-4545eaf7235b03796b939a9a0b1ea24dd0b0a67f.tar.xz |
globe: fixed the color value for AggPas by adding the Alpha channel value
Diffstat (limited to 'examples')
-rw-r--r-- | examples/apps/globe/frm_main.pas | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/apps/globe/frm_main.pas b/examples/apps/globe/frm_main.pas index 4d7f55a1..ef80f2f7 100644 --- a/examples/apps/globe/frm_main.pas +++ b/examples/apps/globe/frm_main.pas @@ -579,7 +579,7 @@ procedure TGlobe.DrawGrid; var temp: integer; begin - Canvas.Color := TfpgColor($8080FF); // clGray; + Canvas.Color := TfpgColor($FF8080FF); // clGray; Canvas.SetLineStyle(0, lsDash); { Parallels } temp := Wfi; |