Tooltips are not rendering properly in Win XP (sometimes). I'll hover over a button, and I will see the appropriate tooltip, then a moment later I will hover over it again and a blank tooltip will come up. The tooltip continues to be wide enough to display all the text that is in it, although its height seems to have reduced by 50% and there doesn't appear to be any text in it. I am using a stylesheet for tooltips which looks like this:

Qt Code:
  1. border: 2px solid darkkhaki;
  2. padding: 5px;
  3. border-radius: 3px;
  4. opacity: 200;
  5. color: black;
  6. }
To copy to clipboard, switch view to plain text mode 

It's very annoying and I can't seem to get it to work reliably. I am not using a custom QToolTip object.

Note: when I build my app and run it in CentOS the tooltips always work. When I build it and run in it Windows XP tooltips only occasionally work.

Thanks in advance for any help you can offer. If this is a known bug, is there a workaround? Otherwise I am just going to have to shut off all the tooltips in my application.