BUGS:99840

adjust opacity on slider.valueChanged() rather than s.moved() (allowing use of mw)

svn path=/trunk/kdebase/kwin/; revision=391549
This commit is contained in:
Thomas Lübking 2005-02-20 23:04:19 +00:00
parent 9ddd01f11c
commit 9e6ae5b095

View file

@ -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 );