Browse Source

Fix unit selection in target profile history.

Neal Wilson 11 years ago
parent
commit
9ee54fb4f0
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      config/Windows/profilehistory.xml

+ 2
- 2
config/Windows/profilehistory.xml View File

120
         v7.triggered.connect(log.LOD_1m);
120
         v7.triggered.connect(log.LOD_1m);
121
 		var showC = findChildObject(this, 'showC');
121
 		var showC = findChildObject(this, 'showC');
122
 		showC.triggered.connect(function() {
122
 		showC.triggered.connect(function() {
123
-			log.setDisplayUnits(TemperatureDisplay.Celsius);
123
+			log.setDisplayUnits(DAQ.Celsius);
124
 			graph.showC();
124
 			graph.showC();
125
 		});
125
 		});
126
 		var showF = findChildObject(this, 'showF');
126
 		var showF = findChildObject(this, 'showF');
127
 		showF.triggered.connect(function() {
127
 		showF.triggered.connect(function() {
128
-			log.setDisplayUnits(TemperatureDisplay.Fahrenheit);
128
+			log.setDisplayUnits(DAQ.Fahrenheit);
129
 			graph.showF();
129
 			graph.showF();
130
 		});
130
 		});
131
 	]]>
131
 	]]>

Loading…
Cancel
Save