diff options
| author | jacob1 <jfu614@gmail.com> | 2012-10-04 14:59:49 (GMT) |
|---|---|---|
| committer | Simon Robertshaw <simon@hardwired.org.uk> | 2012-10-05 15:33:00 (GMT) |
| commit | 433a80b0990380d8ae4bc8a4c264336c1f12bae5 (patch) | |
| tree | cbd67e2d25b275a500f12c5fd714819e6ea924dc /src/game/GameView.cpp | |
| parent | a9619fad333f9326d7a70ac5d06032189849dc40 (diff) | |
| download | powder-433a80b0990380d8ae4bc8a4c264336c1f12bae5.zip powder-433a80b0990380d8ae4bc8a4c264336c1f12bae5.tar.gz | |
holding both Ctrl and Shift still enables 10x stength
Diffstat (limited to 'src/game/GameView.cpp')
| -rw-r--r-- | src/game/GameView.cpp | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/game/GameView.cpp b/src/game/GameView.cpp index 74a2b5a..bb76c97 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); } } } |
