From 52bb934a51ec2f5805eeef143f096c28822b52a4 Mon Sep 17 00:00:00 2001 From: mhugent Date: Wed, 9 Jun 2010 08:06:26 +0000 Subject: [PATCH] Show rotation in degrees in georef status bar git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@13696 c8812cc2-4d05-0410-92ff-de0c093fc19c --- src/plugins/georeferencer/qgsgeorefplugingui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/georeferencer/qgsgeorefplugingui.cpp b/src/plugins/georeferencer/qgsgeorefplugingui.cpp index 501a09038b75..e4a08831da43 100644 --- a/src/plugins/georeferencer/qgsgeorefplugingui.cpp +++ b/src/plugins/georeferencer/qgsgeorefplugingui.cpp @@ -1481,7 +1481,7 @@ void QgsGeorefPluginGui::updateTransformParamLabel() labelString += " "; labelString += tr( "Translation (%1, %2)" ).arg( origin.x() ).arg( origin.y() ); labelString += " "; labelString += tr( "Scale (%1, %2)" ).arg( scaleX ).arg( scaleY ); labelString += " "; - labelString += tr( "Rotation: %1" ).arg( rotation ); + labelString += tr( "Rotation: %1" ).arg( rotation * 180 / M_PI ); } double meanError = 0;