Merge pull request #9449 from Filoppi/patch-11

Qt: Fix Shake Mapping Indicator not showing deadzone
This commit is contained in:
Léo Lam 2021-01-27 19:19:58 +01:00 committed by GitHub
commit 84ad550c19
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 3 deletions

View File

@ -592,9 +592,13 @@ void ShakeMappingIndicator::Draw()
p.scale(1.0, -1.0);
// Deadzone.
p.setPen(GetDeadZonePen());
p.setBrush(GetDeadZoneBrush(p));
p.drawRect(-1.0, 0, 2, m_shake_group.GetDeadzone());
const double deadzone = m_shake_group.GetDeadzone();
if (deadzone > 0.0)
{
p.setPen(GetDeadZonePen());
p.setBrush(GetDeadZoneBrush(p));
p.drawRect(QRectF(-1, 0, 2, deadzone));
}
// Raw input.
const auto raw_coord = m_shake_group.GetState(false);