From 6798567e4ab668debd80b841d52af2fce7dfee86 Mon Sep 17 00:00:00 2001 From: Thomas Zander Date: Sun, 11 Jan 2004 14:30:10 +0000 Subject: [PATCH] + slBorder->setPageStep(1); So if you click next to the thumb you don't make it go to the complete end every time. svn path=/trunk/kdebase/kwin/; revision=278724 --- kcmkwin/kwindecoration/kwindecoration.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/kcmkwin/kwindecoration/kwindecoration.cpp b/kcmkwin/kwindecoration/kwindecoration.cpp index 94ec3d2ae7..b99003a00d 100644 --- a/kcmkwin/kwindecoration/kwindecoration.cpp +++ b/kcmkwin/kwindecoration/kwindecoration.cpp @@ -128,6 +128,7 @@ KWinDecorationModule::KWinDecorationModule(QWidget* parent, const char* name, co lBorder = new QLabel( buttonPage ); slBorder = new QSlider( Horizontal, buttonPage ); + slBorder->setPageStep(1); QWhatsThis::add( slBorder, i18n( "This slider shows all border sizes supported by this decoration." )); lBorder->setBuddy( slBorder ); lBorder->hide();