Ubuntu – Gnome uses qt for rendering

gnomekde

I've just installed KDE on my Ubuntu 12.04 (sudo apt-get install kde-full).

Normally I use Gnome (not Unity), but after installation of KDE i see that the rendering was changed. Everything looks like it was rendered by QT, not GTK.

So my question is how to check which rendering engine is being used (QT or GTK)? And how to change it?

Best Answer

This is because you were probably using Qt applications (you didn't mention which, so can't check really), rendered in a GTK theme before. Now, they're rendered in a native theme.

Install the QtConfig tool to change this:

sudo apt-get install qt4-qtconfig

And run it:

qtconfig

Then change your setting here:

enter image description here

Related Question