From 1da43a79932edda9bd85da1a2b7d2b41c924cc88 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lubo=C5=A1=20Lu=C5=88=C3=A1k?= Date: Fri, 4 Apr 2008 18:08:43 +0000 Subject: [PATCH] Work around a Qt4.4.0RC1 redrawing bug. BUG: 157659 svn path=/trunk/KDE/kdebase/workspace/; revision=793649 --- main.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/main.cpp b/main.cpp index 1f984a2477..fe93ba2320 100644 --- a/main.cpp +++ b/main.cpp @@ -490,6 +490,8 @@ KDE_EXPORT int kdemain( int argc, char * argv[] ) signal(SIGHUP, SIG_IGN); // HACK this is needed for AIGLX setenv( "LIBGL_ALWAYS_INDIRECT","1", true ); + // HACK this is needed to work around a Qt4.4.0RC1 bug (#157659) + setenv( "QT_SLOW_TOPLEVEL_RESIZE", "1", true ); KWin::Application a; KWin::SessionManager weAreIndeed; KWin::SessionSaveDoneHelper helper;