From 31be7dd8344c84802364496fd3cf4275816062e5 Mon Sep 17 00:00:00 2001 From: Antonio Larrosa Jimenez Date: Tue, 26 Feb 2002 13:17:35 +0000 Subject: [PATCH] I noticed this by casuality. Someone changed the order in which the labels where shown, but not the order of the combo boxes, so where it said Middle Button, you configured the left button :-) svn path=/trunk/kdebase/kwin/; revision=138700 --- kcmkwin/kwinoptions/mouse.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/kcmkwin/kwinoptions/mouse.cpp b/kcmkwin/kwinoptions/mouse.cpp index 6ebeed60ba..9ecd2f5042 100644 --- a/kcmkwin/kwinoptions/mouse.cpp +++ b/kcmkwin/kwinoptions/mouse.cpp @@ -294,11 +294,6 @@ KActionsConfig::KActionsConfig (KConfig *_config, QWidget * parent, const char * "will allow you to perform the following actions."); QWhatsThis::add( label, strAllKey ); - label = new QLabel(i18n("Modifier Key + Middle Button:"), grid); - strAll2 = i18n("Here you can customize KDE's behavior when middle clicking into a window" - " while pressing the modifier key."); - QWhatsThis::add( label, strAll2 ); - strMouseButton1 = i18n("Modifier Key + Left Button:"); strAll1 = i18n("In this row you can customize left click behavior when clicking into" @@ -317,6 +312,11 @@ KActionsConfig::KActionsConfig (KConfig *_config, QWidget * parent, const char * label = new QLabel(strMouseButton1, grid); QWhatsThis::add( label, strAll1); + label = new QLabel(i18n("Modifier Key + Middle Button:"), grid); + strAll2 = i18n("Here you can customize KDE's behavior when middle clicking into a window" + " while pressing the modifier key."); + QWhatsThis::add( label, strAll2 ); + label = new QLabel(strMouseButton3, grid); QWhatsThis::add( label, strAll3);