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 ef084fa commit e3322b7Copy full SHA for e3322b7
src/plugins/grass/qgsgrassattributes.cpp
@@ -128,6 +128,9 @@ void QgsGrassAttributes::restorePosition()
128
int wh = settings.readNumEntry("/GRASS/windows/attributes/h", 350);
129
int wx = settings.readNumEntry("/GRASS/windows/attributes/x", 100);
130
int wy = settings.readNumEntry("/GRASS/windows/attributes/y", 100);
131
+ #ifdef QGISDEBUG
132
+ std::cerr << "wx = " << wx << " wy = " << wy << std::endl;
133
+ #endif
134
resize(ww,wh);
135
move(wx,wy);
136
}
0 commit comments