From b4f1c489a387cb793cfe4fec6331628df7b7435e Mon Sep 17 00:00:00 2001 From: spycrab Date: Sun, 20 May 2018 21:16:14 +0200 Subject: [PATCH] Qt/MappingIndicator: Center trigger labels --- .../Core/DolphinQt2/Config/Mapping/MappingIndicator.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Source/Core/DolphinQt2/Config/Mapping/MappingIndicator.cpp b/Source/Core/DolphinQt2/Config/Mapping/MappingIndicator.cpp index a0ef71c13f..a7c27fc636 100644 --- a/Source/Core/DolphinQt2/Config/Mapping/MappingIndicator.cpp +++ b/Source/Core/DolphinQt2/Config/Mapping/MappingIndicator.cpp @@ -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*)