From d26bb8594d88759108c1e1fa743b21a166f1826e Mon Sep 17 00:00:00 2001 From: gambas Date: Wed, 13 Mar 2019 21:36:30 +0100 Subject: [PATCH] GridView: Make selected color less transparent. [GB.GUI.BASE] * NEW: GridView: Make selected color less transparent. --- comp/src/gb.gui.base/.src/GridView/GridView.class | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/comp/src/gb.gui.base/.src/GridView/GridView.class b/comp/src/gb.gui.base/.src/GridView/GridView.class index a51169df9..914811f36 100644 --- a/comp/src/gb.gui.base/.src/GridView/GridView.class +++ b/comp/src/gb.gui.base/.src/GridView/GridView.class @@ -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