From 4b33f1babc1cfe326ebda7fea711b57486561e1b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lubo=C5=A1=20Lu=C5=88=C3=A1k?= Date: Tue, 8 Jan 2008 16:28:43 +0000 Subject: [PATCH] Fix render check. svn path=/trunk/KDE/kdebase/workspace/; revision=758642 --- compositingprefs.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compositingprefs.cpp b/compositingprefs.cpp index 6e895bfffa..ecabb24eed 100644 --- a/compositingprefs.cpp +++ b/compositingprefs.cpp @@ -91,7 +91,7 @@ QString CompositingPrefs::compositingNotPossibleReason() if( !Extensions::glxAvailable()) return i18n( "GLX/OpenGL are not available and only OpenGL support is compiled." ); #elif !defined( KWIN_HAVE_OPENGL_COMPOSITING ) && defined( KWIN_HAVE_XRENDER_COMPOSITING ) - if( !Extensions::glxAvailable()) + if( !( Extensions::renderAvailable() && Extensions::fixesAvailable())) return i18n( "XRender/XFixes extensions are not available and only XRender support" " is compiled." ); #else