We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent 131a4ba commit b97a8d0Copy full SHA for b97a8d0
src/plugins/grass/qgsgrassmodel.cpp
@@ -265,7 +265,11 @@ QString QgsGrassModelItem::info()
265
char buffer[100];
266
267
Vect_get_map_box (&Map, &box );
268
- int proj = Vect_get_proj(&Map);
+
269
+ QgsGrass::setMapset( mGisbase, mLocation, mMapset );
270
+ struct Cell_head window;
271
+ G_get_window (&window);
272
+ int proj = window.proj;
273
274
G_format_northing (box.N, buffer, proj);
275
str += htmlTableRow ( "North", QString(buffer) );
0 commit comments