Oliver Vogel schrieb:
hi sebastian
i think, there is always a bug in disabling a QxButton.
if you disable a button while the mouse is OVER the button or the button is PRESSED the button holds this state. this means. if you are over the button with the mouse and then disable the button the button reminds blue. even if you move the mouse out of the button. so i think, you should add these lines to the "disabled" - function of the QxButton:

pseudo-code
if (enablemode = false)
{
btn.removeState(QxConst.STATE_OVER); // Maus ist nicht mehr auf Button
   btn.removeState(QxConst.STATE_PRESSED);    // Button ist nicht gepresst
   btn.setEnabled(false);                    // und disablen
}
else
{
   btn.setEnabled(true);                    // und enable
}

Hi Olli,

I have thought that we have fixed this already.

Could you please send us an example to see the problem? Thanks.

Sebastian



Olli




-------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=103432&bid=230486&dat=121642
_______________________________________________
Qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel



-------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=103432&bid=230486&dat=121642
_______________________________________________
Qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to