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); } } }