DolphinQt: Fix gyro mapping indicator's "jitter" drawing.

This commit is contained in:
Jordan Woyak 2020-03-17 19:19:58 -05:00
parent 0461170363
commit 099e6bfab9
1 changed files with 1 additions and 1 deletions

View File

@ -689,7 +689,7 @@ void GyroMappingIndicator::Draw()
const auto jitter_line_y =
std::min(max_jitter / deadzone_value * DEADZONE_DRAW_SIZE - DEADZONE_DRAW_BOTTOM, 1.0);
p.setPen(GetCosmeticPen(QPen(GetRawInputColor(), INPUT_DOT_RADIUS)));
p.drawLine(-1.0, jitter_line_y * -1.0, 1.0, jitter_line_y * -1.0);
p.drawLine(QLineF(-1.0, jitter_line_y * -1.0, 1.0, jitter_line_y * -1.0));
// Sphere background.
p.setPen(Qt::NoPen);