From 75a26a41b2a4e8f8c7c82e9cbcf09a289b785e49 Mon Sep 17 00:00:00 2001 From: Christoph Feck Date: Thu, 8 Mar 2012 00:25:08 +0100 Subject: [PATCH] Fix build CCMAIL: kwin@kde.org --- useractions.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/useractions.cpp b/useractions.cpp index 1c8e47d190..dfb6fd4174 100644 --- a/useractions.cpp +++ b/useractions.cpp @@ -1209,7 +1209,7 @@ void Workspace::slotWindowLower() // keyboard focus to the next available window. //activateNextClient( c ); // Doesn't work when we lower a child window if (active_client->isActive() && options->focusPolicyIsReasonable()) { - if (options->nextFocusPrefersMouse) { + if (options->isNextFocusPrefersMouse()) { Client *next = clientUnderMouse(active_client->screen()); if (next && next != active_client) requestFocus(next, false);