From kde-commits Thu Feb 17 20:48:12 2005 From: =?utf-8?q?Thomas=20L=C3=BCbking?= Date: Thu, 17 Feb 2005 20:48:12 +0000 To: kde-commits Subject: kdebase/kwin Message-Id: <20050217204812.09D651CEAC () office ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=110867331532145 CVS commit by luebking: BUGS:99636 fixes wrong opacity value on popup show M +1 -1 useractions.cpp 2.36 --- kdebase/kwin/useractions.cpp #2.35:2.36 @@ -177,5 +177,5 @@ void Workspace::clientPopupAboutToShow() { transSlider->setValue(100-active_popup_client->opacityPercentage()); - setTransButtonText(active_popup_client->opacityPercentage()); + setTransButtonText(100-active_popup_client->opacityPercentage()); } }