Skip to content

Commit 6b8c37b

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

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/plugins/georeferencer/qgsgeorefplugingui.cpp

+1-1
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)