Bug 93575

Summary: panel (kicker) transperency on/off only (tint amount does not work)
Product: [Plasma] kicker Reporter: Roger Larsson <roger.larsson>
Component: generalAssignee: Aaron J. Seigo <aseigo>
Status: RESOLVED FIXED    
Severity: normal    
Priority: NOR    
Version: unspecified   
Target Milestone: ---   
Platform: unspecified   
OS: Linux   
Latest Commit: Version Fixed In:

Description Roger Larsson 2004-11-19 13:27:09 UTC
Version:           3.3.0 (using KDE 3.3.89 (CVS >= 20041104), compiled sources)
Compiler:          gcc version 3.3.3 (SuSE Linux)
OS:                Linux (i686) release 2.6.5-7.111-default

Differences from bug 66426 are apply works.
But n reality the amount wont change a thing.

Background blending works.
Menu trancperency works.

nVidia closed source drivers.
Comment 1 Leon Pennington 2004-12-22 06:27:07 UTC
Same problem here, no tinting at all. As Roger says Menu Works just not kicker.
Comment 2 Aaron J. Seigo 2004-12-29 04:08:05 UTC
CVS commit by aseigo: 

tint is a percentage, between 0 and 1.
BUG:93575


  M +1 -1      kicker.cpp   1.59


--- kdebase/kicker/core/kicker.cpp  #1.58:1.59
@@ -201,5 +201,5 @@ void Kicker::configure()
     m_rotateBg = c->readBoolEntry("RotateBackground", true);
     m_bgTheme = c->readPathEntry("BackgroundTheme", "wallpapers/default.png");
-    m_tintValue = c->readNumEntry("TintValue", 0);
+    m_tintValue = double(c->readNumEntry("TintValue", 0)) / 100;
     m_tintColor = c->readColorEntry("TintColor", &palette().active().mid());