From 493ba08bd0746acbe9ed8bb6e55b496ca2f933fb Mon Sep 17 00:00:00 2001 From: Le Tan Date: Wed, 24 Oct 2018 20:58:10 +0800 Subject: [PATCH] TabIndicator: refine style --- src/vtabindicator.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/vtabindicator.cpp b/src/vtabindicator.cpp index e62ee11d..b770aa73 100644 --- a/src/vtabindicator.cpp +++ b/src/vtabindicator.cpp @@ -211,9 +211,9 @@ void VTabIndicator::update(const VEditTabInfo &p_info) int lineCount = p_info.m_blockCount < 1 ? 1 : p_info.m_blockCount; - QString cursorText = tr("Line: %1 - %2(%3%) " - "Col: %4") - .arg(line).arg(lineCount) + QString cursorText = tr("Line: %1 - %2(%3%) Col: %4") + .arg(line) + .arg(lineCount) .arg((int)(line * 1.0 / lineCount * 100), 2) .arg(col, 3); m_cursorLabel->setText(cursorText);