#6447 Reduce precision in the correlation list in right-click menu

This commit is contained in:
Gaute Lindkvist 2020-09-07 09:19:56 +02:00
parent b64cad8bef
commit df0a985e14

View File

@ -286,7 +286,7 @@ void RiuSummaryQwtPlot::contextMenuEvent( QContextMenuEvent* event )
QString( "New Cross Plot Against %1 " QString( "New Cross Plot Against %1 "
"(Correlation: %2)" ) "(Correlation: %2)" )
.arg( param.first.name ) .arg( param.first.name )
.arg( param.second ), .arg( param.second, 5, 'f', 2 ),
variant ); variant );
} }
} }