Skip to content

Commit ba0fdfa

Browse files
committedJun 1, 2016
Clarify use of the term "OTF"
- change button tooltip from referring to "OTFR" to "OTF" to match button text - change wording of enable CRS transformation option to make it more obvious that this option is what "OTF" refers to Inspired by @rouault
1 parent 062aa9a commit ba0fdfa

File tree

2 files changed

+135
-45
lines changed

2 files changed

+135
-45
lines changed
 

‎src/app/qgisapp.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9704,13 +9704,13 @@ void QgisApp::updateCRSStatusBar()
97049704
{
97059705
mOnTheFlyProjectionStatusButton->setText( tr( "%1 (OTF)" ).arg( mOnTheFlyProjectionStatusButton->text() ) );
97069706
mOnTheFlyProjectionStatusButton->setToolTip(
9707-
tr( "Current CRS: %1 (OTFR enabled)" ).arg( mMapCanvas->mapSettings().destinationCrs().description() ) );
9707+
tr( "Current CRS: %1 (OTF enabled)" ).arg( mMapCanvas->mapSettings().destinationCrs().description() ) );
97089708
mOnTheFlyProjectionStatusButton->setIcon( QgsApplication::getThemeIcon( "mIconProjectionEnabled.png" ) );
97099709
}
97109710
else
97119711
{
97129712
mOnTheFlyProjectionStatusButton->setToolTip(
9713-
tr( "Current CRS: %1 (OTFR disabled)" ).arg( mMapCanvas->mapSettings().destinationCrs().description() ) );
9713+
tr( "Current CRS: %1 (OTF disabled)" ).arg( mMapCanvas->mapSettings().destinationCrs().description() ) );
97149714
mOnTheFlyProjectionStatusButton->setIcon( QgsApplication::getThemeIcon( "mIconProjectionDisabled.png" ) );
97159715
}
97169716
}

0 commit comments

Comments
 (0)