Skip to content

Commit 3eb5eb2

Browse files
committed
Standardise to not showing : in main status bar labels
1 parent 865a7b9 commit 3eb5eb2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/app/qgisapp.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -2071,7 +2071,7 @@ void QgisApp::createStatusBar()
20712071
mRotationLabel->setMargin( 3 );
20722072
mRotationLabel->setAlignment( Qt::AlignCenter );
20732073
mRotationLabel->setFrameStyle( QFrame::NoFrame );
2074-
mRotationLabel->setText( tr( "Rotation:" ) );
2074+
mRotationLabel->setText( tr( "Rotation" ) );
20752075
mRotationLabel->setToolTip( tr( "Current clockwise map rotation in degrees" ) );
20762076
statusBar()->addPermanentWidget( mRotationLabel, 0 );
20772077

src/app/qgsstatusbarcoordinateswidget.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ QgsStatusBarCoordinatesWidget::QgsStatusBarCoordinatesWidget( QWidget *parent )
4343
mLabel->setMargin( 3 );
4444
mLabel->setAlignment( Qt::AlignCenter );
4545
mLabel->setFrameStyle( QFrame::NoFrame );
46-
mLabel->setText( tr( "Coordinate:" ) );
46+
mLabel->setText( tr( "Coordinate" ) );
4747
mLabel->setToolTip( tr( "Current map coordinate" ) );
4848

4949
mLineEdit = new QLineEdit( this );

0 commit comments

Comments
 (0)