RequestColor open 2 Times

BlitzMax Forums/MaxGUI Module/RequestColor open 2 Times

Riva(Posted 2008) [#1]
Hello,

i have some troubles with choosing colors from the RequestColor dialog. When i click on a Panel the ColorRequest opens 2 times.

Any hints?




Beaker(Posted 2008) [#2]
Change this line:
Local P:tPalette = New tPalette.Create(ColorArray)
..to..
Local P:tPalette = tPalette.Create(ColorArray)

All your events were firing twice, not just the MOUSEDOWN one.


Riva(Posted 2008) [#3]
Hi Beaker,

many Thanks.

1. It Works
2. Many Troubles in my Main Programm are now = NULL

:-)