GridView: Make selected color less transparent.

[GB.GUI.BASE]
* NEW: GridView: Make selected color less transparent.
This commit is contained in:
gambas 2019-03-13 21:36:30 +01:00
parent d3a182aa0e
commit d26bb8594d

View file

@ -421,9 +421,9 @@ Public Sub ScrollArea_Draw()
Endif
If $hView.HasFocus Then
iBgSel = Color.SetAlpha(Color.SelectedBackground, &HC0)
iBgSel = Color.SetAlpha(Color.SelectedBackground, &HA0)
Else
iBgSel = Color.SetAlpha(Color.SelectedBackground, &HE0)
iBgSel = Color.SetAlpha(Color.SelectedBackground, &HC0)
Endif
If $hColumns.Count = 0 And If $hRows.Count = 0 Then Return