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 5d07251 commit f8efcb0Copy full SHA for f8efcb0
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