Bug 93575 - panel (kicker) transperency on/off only (tint amount does not work)
Summary: panel (kicker) transperency on/off only (tint amount does not work)
Status: RESOLVED FIXED
Alias: None
Product: kicker
Classification: Plasma
Component: general (show other bugs)
Version: unspecified
Platform: unspecified Linux
: NOR normal
Target Milestone: ---
Assignee: Aaron J. Seigo
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2004-11-19 13:27 UTC by Roger Larsson
Modified: 2004-12-29 04:08 UTC (History)
0 users

See Also:
Latest Commit:
Version Fixed In:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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());