From 8c9e80f813b3f227d2e619af42ba80a876a1aa45 Mon Sep 17 00:00:00 2001 From: Cristian Tibirna Date: Sat, 3 Aug 2002 19:27:21 +0000 Subject: [PATCH] CT: "rise" -> "raise", which fixes a bug with raising active windows with the mouse. Thanks a lot to David Boddie for discovering it. svn path=/trunk/kdebase/kwin/; revision=170283 --- options.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/options.cpp b/options.cpp index ac24d2d15a..f2e124b447 100644 --- a/options.cpp +++ b/options.cpp @@ -304,9 +304,9 @@ Options::WindowOperation Options::windowOperation(const QString &name){ Options::MouseCommand Options::mouseCommand(const QString &name) { QString lowerName = name.lower(); - if (lowerName == "rise") return MouseRaise; + if (lowerName == "raise") return MouseRaise; if (lowerName == "lower") return MouseLower; - if (lowerName == "operations menu") return MouseOperationsMenu; + if (lowerName == "operations menu") return MouseOperationsMenu; if (lowerName == "toggle raise and lower") return MouseToggleRaiseAndLower; if (lowerName == "activate and raise") return MouseActivateAndRaise; if (lowerName == "activate and lower") return MouseActivateAndLower;