Skip to content

Commit

Permalink
Fix non-translatable string in TIN interpolation alg
Browse files Browse the repository at this point in the history
  • Loading branch information
agiudiceandrea authored and nyalldawson committed Jun 15, 2020
1 parent 5caa007 commit f9b897b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/analysis/interpolation/DualEdgeTriangulation.cpp
Expand Up @@ -2610,7 +2610,7 @@ bool DualEdgeTriangulation::readFromTAFF( QString filename )

//import all the DualEdges
QProgressBar *edgebar = new QProgressBar();//use a progress dialog so that it is not boring for the user
edgebar->setCaption( "Reading edges…" );
edgebar->setCaption( tr( "Reading edges…" ) );
edgebar->setTotalSteps( numberofhalfedges / 2 );
edgebar->setMinimumWidth( 400 );
edgebar->move( 500, 500 );
Expand Down

0 comments on commit f9b897b

Please sign in to comment.