From 433a80b0990380d8ae4bc8a4c264336c1f12bae5 Mon Sep 17 00:00:00 2001 From: jacob1 Date: Thu, 4 Oct 2012 10:59:49 -0400 Subject: [PATCH] holding both Ctrl and Shift still enables 10x stength --- src/game/GameView.cpp | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/src/game/GameView.cpp b/src/game/GameView.cpp index 74a2b5a7f..bb76c9762 100644 --- a/src/game/GameView.cpp +++ b/src/game/GameView.cpp @@ -1629,10 +1629,7 @@ void GameView::enableShiftBehaviour() shiftBehaviour = true; if(isMouseDown) { - if(!ctrlBehaviour) - c->SetToolStrength(10.0f); - else - c->SetToolStrength(1.0f); + c->SetToolStrength(10.0f); } } } @@ -1681,7 +1678,7 @@ void GameView::enableCtrlBehaviour() if(!shiftBehaviour) c->SetToolStrength(.1f); else - c->SetToolStrength(1.0f); + c->SetToolStrength(10.0f); } } }