[Done] White text is shown as black

You need some new stunning features ? Tell us here.
luciano
Enthusiast
Enthusiast
Posts: 151
Joined: Wed Mar 09, 2011 8:25 pm

[Done] White text is shown as black

Post by luciano »

I am going on using FD :-)

Maybe it a wanted feature not to hide text, but white text (255,255,255) is shown as black in string gadgets.
Code is correct anyway, so it is just a cosmetic problem.

Image

Code: Select all

Procedure InitWindow_1()
  Window_1 = OpenWindow(#PB_Any, 0, 0, 330, 145, "", #PB_Window_SystemMenu)
  StringGadget(#String_0, 45, 45, 170, 35, "WHITE TEXT")
  SetGadgetColor(#String_0, #PB_Gadget_FrontColor,RGB(255,255,255))
  SetGadgetColor(#String_0, #PB_Gadget_BackColor,RGB(128,128,128))
EndProcedure
Polo
Addict
Addict
Posts: 2422
Joined: Tue May 06, 2003 5:07 pm
Location: UK

Re: White text is shown as black

Post by Polo »

Fixed.
Post Reply