[Webkit-unassigned] [Bug 12345] REGRESSION: Disabled pop-up text is not grayed out

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Sat Jan 20 07:33:51 PST 2007


http://bugs.webkit.org/show_bug.cgi?id=12345





------- Comment #1 from mitz at webkit.org  2007-01-20 07:33 PDT -------
Created an attachment (id=12572)
 --> (http://bugs.webkit.org/attachment.cgi?id=12572&action=view)
Use gray for disabled pop-ups

I added the casts to RGBA32 to appease the compiler, which otherwise regarded
the colors as external symbols, leading to a link error. I couldn't figure out
what the problem was. The following worked:
e->isEnabled() ? Color::black : 0
e->isEnabled() ? 0 : Color::darkGray
but this didn't work:
e->isEnabled() ? Color::black : Color::darkGray


-- 
Configure bugmail: http://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.



More information about the webkit-unassigned mailing list