Skip to content

Commit

Permalink
Standardise to not showing : in main status bar labels
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Feb 24, 2016
1 parent 865a7b9 commit 3eb5eb2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app/qgisapp.cpp
Expand Up @@ -2071,7 +2071,7 @@ void QgisApp::createStatusBar()
mRotationLabel->setMargin( 3 );
mRotationLabel->setAlignment( Qt::AlignCenter );
mRotationLabel->setFrameStyle( QFrame::NoFrame );
mRotationLabel->setText( tr( "Rotation:" ) );
mRotationLabel->setText( tr( "Rotation" ) );
mRotationLabel->setToolTip( tr( "Current clockwise map rotation in degrees" ) );
statusBar()->addPermanentWidget( mRotationLabel, 0 );

Expand Down
2 changes: 1 addition & 1 deletion src/app/qgsstatusbarcoordinateswidget.cpp
Expand Up @@ -43,7 +43,7 @@ QgsStatusBarCoordinatesWidget::QgsStatusBarCoordinatesWidget( QWidget *parent )
mLabel->setMargin( 3 );
mLabel->setAlignment( Qt::AlignCenter );
mLabel->setFrameStyle( QFrame::NoFrame );
mLabel->setText( tr( "Coordinate:" ) );
mLabel->setText( tr( "Coordinate" ) );
mLabel->setToolTip( tr( "Current map coordinate" ) );

mLineEdit = new QLineEdit( this );
Expand Down

1 comment on commit 3eb5eb2

@nirvn
Copy link
Contributor

@nirvn nirvn commented on 3eb5eb2 Feb 24, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@nyalldawson thanks; I just noticed the "Scale" label contains a space, i.e. the string is actually "Scale ", which creates a bit of an imbalance.

Please sign in to comment.