From 988c0933c771aa869773e30598727e488209a740 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20L=C3=BCbking?= Date: Fri, 18 Feb 2005 23:11:39 +0000 Subject: [PATCH] BUGS:99718 opacity popup now not closing on slider releases svn path=/trunk/kdebase/kwin/; revision=390732 --- useractions.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/useractions.cpp b/useractions.cpp index 43d977a3b1..23069339df 100644 --- a/useractions.cpp +++ b/useractions.cpp @@ -84,7 +84,7 @@ QPopupMenu* Workspace::clientPopup() 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(sliderReleased()), trans_popup, SLOT(hide())); +// connect(transSlider, SIGNAL(sliderReleased()), trans_popup, SLOT(hide())); trans_popup->insertItem(transBox); popup->insertItem(i18n("&Opacity"), trans_popup ); }