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 2b3d499 commit e2faa85Copy full SHA for e2faa85
src/gui/qgsoptions.cpp
@@ -47,9 +47,13 @@ QgsOptions::QgsOptions(QWidget *parent, Qt::WFlags fl) :
47
QSettings settings;
48
QString browser = settings.readEntry("/qgis/browser");
49
cmbBrowser->setCurrentText(browser);
50
+#ifdef QGISDEBUG
51
std::cout << "Standard Identify radius setting: " << QGis::DEFAULT_IDENTIFY_RADIUS << std::endl;
52
+#endif
53
int identifyValue = settings.readNumEntry("/Map/identifyRadius",QGis::DEFAULT_IDENTIFY_RADIUS);
54
55
std::cout << "Standard Identify radius setting read from settings file: " << identifyValue << std::endl;
56
57
spinBoxIdentifyValue->setValue(identifyValue);
58
59
// set the current theme
0 commit comments