Community
Participate
Working Groups
Build Identifier: Version: 3.7.2 Build id: M20120208-0800 When the desktop theme uses a tooltip black background then the "class explorer tooltip" in the debug perspective is not visible because the text is black on black. Note: I know that a similar issue has been reported previously where Javadoc tooltips appear in black on black (bug #312966). This is not the same bug. This bug is specifically for the "class explorer tooltip" in the debug perspective. Obviously it is very similar to the previous bug, I would guess that the cause is probably similar, but the Javadoc tooltips appear as white text on black background which is ok. Reproducible: Always Steps to Reproduce: 1. Create this: public class YoWorld { static public class X { int a,b,c; X() { a=b=c=0; } } /** * @param args */ public static void main(String[] args) { // TODO Auto-generated method stub int x = 5; int y=0; int z; X x2 = new X(); String s; z=x+y; z--; System.out.println("hello world"); } } 2. Set breakpoint at z=x+y 3. Run debugger 4. Hover over x2 in "X x2 = new X();"
Created attachment 215015 [details] jpg of black on black class explorer tooltip in debug perspective
*** This bug has been marked as a duplicate of bug 368161 ***
*** This bug has been marked as a duplicate of bug 329720 ***