From de85f1289424f48dd4b13f06ffce04cd0b892c45 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20L=C3=BCbking?= Date: Thu, 17 Feb 2005 20:48:11 +0000 Subject: [PATCH] BUGS:99636 fixes wrong opacity value on popup show svn path=/trunk/kdebase/kwin/; revision=390369 --- useractions.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/useractions.cpp b/useractions.cpp index 0e86d055d7..eb37d08abf 100644 --- a/useractions.cpp +++ b/useractions.cpp @@ -176,7 +176,7 @@ void Workspace::clientPopupAboutToShow() if (options->useTranslucency) { transSlider->setValue(100-active_popup_client->opacityPercentage()); - setTransButtonText(active_popup_client->opacityPercentage()); + setTransButtonText(100-active_popup_client->opacityPercentage()); } }