CT: "rise" -> "raise", which fixes a bug with raising active windows

with the mouse. Thanks a lot to David Boddie <david@sleepydog.net>
	for discovering it.

svn path=/trunk/kdebase/kwin/; revision=170283
This commit is contained in:
Cristian Tibirna 2002-08-03 19:27:21 +00:00
parent 6fbc14484f
commit 8c9e80f813

View file

@ -304,7 +304,7 @@ Options::WindowOperation Options::windowOperation(const QString &name){
Options::MouseCommand Options::mouseCommand(const QString &name) Options::MouseCommand Options::mouseCommand(const QString &name)
{ {
QString lowerName = name.lower(); QString lowerName = name.lower();
if (lowerName == "rise") return MouseRaise; if (lowerName == "raise") return MouseRaise;
if (lowerName == "lower") return MouseLower; 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 == "toggle raise and lower") return MouseToggleRaiseAndLower;