From 9e6ae5b095957c55a36fd5232624aa25a59efef1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20L=C3=BCbking?= Date: Sun, 20 Feb 2005 23:04:19 +0000 Subject: [PATCH] BUGS:99840 adjust opacity on slider.valueChanged() rather than s.moved() (allowing use of mw) svn path=/trunk/kdebase/kwin/; revision=391549 --- useractions.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/useractions.cpp b/useractions.cpp index 23069339df..9474d88e87 100644 --- a/useractions.cpp +++ b/useractions.cpp @@ -83,7 +83,7 @@ QPopupMenu* Workspace::clientPopup() connect(transButton, SIGNAL(clicked()), SLOT(resetClientOpacity())); connect(transButton, SIGNAL(clicked()), trans_popup, SLOT(hide())); connect(transSlider, SIGNAL(valueChanged(int)), SLOT(setTransButtonText(int))); - connect(transSlider, SIGNAL(sliderMoved(int)), this, SLOT(setPopupClientOpacity(int))); + connect(transSlider, SIGNAL(valueChanged(int)), this, SLOT(setPopupClientOpacity(int))); // connect(transSlider, SIGNAL(sliderReleased()), trans_popup, SLOT(hide())); trans_popup->insertItem(transBox); popup->insertItem(i18n("&Opacity"), trans_popup );