From kde-commits Thu Feb 17 21:12:01 2005 From: =?utf-8?q?Thomas=20L=C3=BCbking?= Date: Thu, 17 Feb 2005 21:12:01 +0000 To: kde-commits Subject: kdebase/kwin Message-Id: <20050217211201.88D121D130 () office ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=110867480410481 CVS commit by luebking: just noticed that clicking the button on the opacity slider causes the same misvalue problem - fixed M +2 -1 useractions.cpp 2.37 --- kdebase/kwin/useractions.cpp #2.36:2.37 @@ -135,5 +135,6 @@ void Workspace::resetClientOpacity() active_popup_client->setCustomOpacityFlag(false); active_popup_client->updateOpacity(); - setTransButtonText(active_popup_client->opacityPercentage()); + transSlider->setValue(100-active_popup_client->opacityPercentage()); + setTransButtonText(100-active_popup_client->opacityPercentage()); }