PB 5.22LTS ListViewGadget back color not changeable
Posted: Tue Mar 25, 2014 11:00 am
Hi,
changing the back color of a ListViewGadget does not work in Linux. On Windows it works. Here is a code to see:
Best regards
Uwe
changing the back color of a ListViewGadget does not work in Linux. On Windows it works. Here is a code to see:
Code: Select all
If OpenWindow(0, 0, 0, 300, 200, "Test", #PB_Window_SystemMenu | #PB_Window_ScreenCentered)
ListViewGadget(0, 10, 10, 280, 180)
SetGadgetColor(0, #PB_Gadget_BackColor, 255)
AddGadgetItem(0, -1, "One")
Repeat
Until WaitWindowEvent() = #PB_Event_CloseWindow
EndIfUwe