I have an example application that came with Qt (dialogs/standarddialogs) and modified it so that it displays dialog on every screen:

for(int i=0;i<app.desktop()->screenCount();i++)
{
    Dialog* dialog = new Dialog(app.desktop()->screen(i));
    dialog->show();
}
return app.exec();

When testing on Xnest on application default screen (the one from which the application has been started) everything works ok. However, on the other screen the icons in message boxes are not displayed correctly.

distorted icons

The problem can be reproduced on both solaris and linux. However, when I try Xephyr instead of Xnest the problem disappears (on linux). On the other hand this is not a problem with Xnest itself as on Exceed the problem can also be reproduced (but the icons are not displayed at all).

Has anybody seen this kind of problem? Do you think it might be a problem with Qt or configuration of X server? Or maybe I need to compile Qt with some special options?

link|improve this question

45% accept rate
I've never seen this problem on KDE. Perhaps it's an issue with the icon image format? – sje397 May 11 '11 at 12:47
I doubt it as it works in the very same instance of the application in the default screen (in this case 0). – Tomasz Grobelny May 11 '11 at 13:47
feedback

1 Answer

up vote 0 down vote accepted

It seems to be a bug in Qt X11 graphics system. If I set QT_GRAPHICSSYSTEM to raster the icons are displayed properly.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.