- Timestamp:
- Aug 8, 2014, 5:41:24 PM (10 years ago)
- Location:
- trunk/BNC/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/bncwindow.cpp
r5895 r5896 884 884 885 885 QHBoxLayout* pppLayout4Hlp1 = new QHBoxLayout; 886 pppLayout4Hlp1->addWidget(new QLabel("PPP Plot ")); 886 pppLayout4Hlp1->addWidget(new QLabel("PPP Station ")); 887 _pppWidgets._plotCoordinates->setMaximumWidth(8*ww); 887 888 pppLayout4Hlp1->addWidget(_pppWidgets._plotCoordinates); 888 889 pppLayout4Hlp1->addWidget(new QLabel("Nort-East-Up Time Series")); … … 2453 2454 void bncWindow::slotMapPPPClosed() { 2454 2455 #ifdef QT_WEBKIT 2455 slotBncTextChanged(); 2456 enableWidget(true, _pppWidgets._mapWinButton); 2457 enableWidget(true, _pppWidgets._gmRadioButton); 2458 enableWidget(true, _pppWidgets._osmRadioButton); 2459 enableWidget(true, _pppWidgets._mapWinDotSizeLineEdit); 2460 enableWidget(true, _pppWidgets._mapWinDotColorComboBox); 2456 2461 if (_mapWin) { 2457 2462 QListIterator<bncGetThread*> it(_threads); -
trunk/BNC/src/map/bncmapwin.cpp
r5879 r5896 102 102 103 103 QFile htmlFile; 104 if (settings.value(" useOsmMap").toBool()) {104 if (settings.value("PPP/useOsmMap").toBool()) { 105 105 htmlFile.setFileName(":/map/map_osm.html"); 106 106 } … … 126 126 } 127 127 bncSettings settings; 128 int mapWinDotSize = settings.value(" mapWinDotSize").toInt();128 int mapWinDotSize = settings.value("PPP/mapWinDotSize").toInt(); 129 129 int mapWinDotColor = 1; 130 if (settings.value(" mapWinDotColor").toString() == "yellow") {130 if (settings.value("PPP/mapWinDotColor").toString() == "yellow") { 131 131 mapWinDotColor = 2; 132 132 }
Note:
See TracChangeset
for help on using the changeset viewer.