Skip to content

Commit

Permalink
Qt/MappingIndicator: Center trigger labels
Browse files Browse the repository at this point in the history
  • Loading branch information
spycrab committed May 20, 2018
1 parent b0b1485 commit b4f1c48
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Source/Core/DolphinQt2/Config/Mapping/MappingIndicator.cpp
Expand Up @@ -264,10 +264,10 @@ void MappingIndicator::DrawMixedTriggers()

p.setBrush(Qt::black);
p.setPen(Qt::white);
p.drawText(width() * 0.225, 16, tr("L-Analog"));
p.drawText(width() * 0.8 + 16, 16, tr("L"));
p.drawText(width() * 0.225, 48, tr("R-Analog"));
p.drawText(width() * 0.8 + 16, 48, tr("R"));
p.drawText(width() * 0.225, 20, tr("L-Analog"));
p.drawText(width() * 0.8 + 16, 20, tr("L"));
p.drawText(width() * 0.225, 52, tr("R-Analog"));
p.drawText(width() * 0.8 + 16, 52, tr("R"));
}

void MappingIndicator::paintEvent(QPaintEvent*)
Expand Down

0 comments on commit b4f1c48

Please sign in to comment.