From 8fee828536a9cbbe307227cc1edbaf4311541d96 Mon Sep 17 00:00:00 2001 From: Lucas Murray Date: Mon, 16 Nov 2009 12:23:01 +0000 Subject: [PATCH] Set the correct default for the titlebar mouse wheel action in KWin core svn path=/trunk/KDE/kdebase/workspace/; revision=1050022 --- options.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/options.cpp b/options.cpp index 138aeae23a..897e5a4df6 100644 --- a/options.cpp +++ b/options.cpp @@ -182,7 +182,7 @@ unsigned long Options::updateSettings() CmdInactiveTitlebar1 = mouseCommand(config.readEntry("CommandInactiveTitlebar1","Activate and raise"), true ); CmdInactiveTitlebar2 = mouseCommand(config.readEntry("CommandInactiveTitlebar2","Activate and lower"), true ); CmdInactiveTitlebar3 = mouseCommand(config.readEntry("CommandInactiveTitlebar3","Operations menu"), true ); - CmdTitlebarWheel = mouseWheelCommand(config.readEntry("CommandTitlebarWheel","Nothing")); + CmdTitlebarWheel = mouseWheelCommand(config.readEntry("CommandTitlebarWheel","Switch to Group Window to the Left/Right")); CmdWindow1 = mouseCommand(config.readEntry("CommandWindow1","Activate, raise and pass click"), false ); CmdWindow2 = mouseCommand(config.readEntry("CommandWindow2","Activate and pass click"), false ); CmdWindow3 = mouseCommand(config.readEntry("CommandWindow3","Activate and pass click"), false );