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,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;