always enable 'smooth' transitions except for 'preview'. This allows to have smooth title bar text color transition even if everything (compositing, glow, separator, etc.) is disabled

svn path=/trunk/KDE/kdebase/workspace/; revision=1025844
This commit is contained in:
Hugo Pereira Da Costa 2009-09-19 21:10:15 +00:00
parent 1852c87178
commit 8c6b8cde28

View file

@ -56,11 +56,17 @@ namespace Oxygen
//___________________________________________
OxygenHelper *oxygenHelper()
{ return globalHelper; }
{
OxygenHelper *helper = globalHelper;
return helper;
}
//___________________________________________
OxygenShadowCache *oxygenShadowCache()
{ return globalShadowCache; }
{
OxygenShadowCache* cache = globalShadowCache;
return cache;
}
//___________________________________________
static void oxkwincleanupBefore()