Skip to content

Commit

Permalink
[HIG] Remove colon from widget label in status bar
Browse files Browse the repository at this point in the history
  • Loading branch information
DelazJ authored and nyalldawson committed Dec 26, 2019
1 parent e2488ea commit 4557a31
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/qgsstatusbarcoordinateswidget.cpp
Expand Up @@ -269,7 +269,7 @@ void QgsStatusBarCoordinatesWidget::extentsViewToggled( bool flag )
mToggleExtentsViewButton->setIcon( QgsApplication::getThemeIcon( QStringLiteral( "tracking.svg" ) ) );
mLineEdit->setToolTip( tr( "Map coordinates at mouse cursor position" ) );
mLineEdit->setReadOnly( false );
mLabel->setText( tr( "Coordinate:" ) );
mLabel->setText( tr( "Coordinate" ) );
}
}

Expand Down Expand Up @@ -306,7 +306,7 @@ void QgsStatusBarCoordinatesWidget::showExtent()

// update the statusbar with the current extents.
QgsRectangle myExtents = mMapCanvas->extent();
mLabel->setText( tr( "Extents:" ) );
mLabel->setText( tr( "Extents" ) );
mLineEdit->setText( myExtents.toString( true ) );

ensureCoordinatesVisible();
Expand Down

0 comments on commit 4557a31

Please sign in to comment.