Commit 889d3ddb authored by Rafaël Carré's avatar Rafaël Carré

qt4: forces plastique style temporarily

parent 2227effd
...@@ -21,11 +21,6 @@ ...@@ -21,11 +21,6 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/ *****************************************************************************/
#ifndef WIN32
# include <signal.h>
# include <QStyle>
#endif
#include <QApplication> #include <QApplication>
#include "qt4.hpp" #include "qt4.hpp"
...@@ -204,8 +199,10 @@ static void Init( intf_thread_t *p_intf ) ...@@ -204,8 +199,10 @@ static void Init( intf_thread_t *p_intf )
p_intf->p_sys->p_app = app; p_intf->p_sys->p_app = app;
#ifndef WIN32 #ifndef WIN32
/* that forces the execution of QCleanlooksStylePrivate::lookupIconTheme() */ /* kludge:
app->style()->standardIcon( QStyle::SP_TitleBarMenuButton ); * forces plastique style as cleanlooks bugs on gnome */
QPlastiqueStyle *plastique = new QPlastiqueStyle;
app->setStyle( plastique );
#endif #endif
// Initialize timers // Initialize timers
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment