Skip to content

Commit 52bb934

Browse files
author
mhugent
committed
Show rotation in degrees in georef status bar
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@13696 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent c4cb755 commit 52bb934

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/plugins/georeferencer/qgsgeorefplugingui.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1481,7 +1481,7 @@ void QgsGeorefPluginGui::updateTransformParamLabel()
14811481
labelString += " ";
14821482
labelString += tr( "Translation (%1, %2)" ).arg( origin.x() ).arg( origin.y() ); labelString += " ";
14831483
labelString += tr( "Scale (%1, %2)" ).arg( scaleX ).arg( scaleY ); labelString += " ";
1484-
labelString += tr( "Rotation: %1" ).arg( rotation );
1484+
labelString += tr( "Rotation: %1" ).arg( rotation * 180 / M_PI );
14851485
}
14861486

14871487
double meanError = 0;

0 commit comments

Comments
 (0)