Kaynağa Gözat

Show all columns for a batch on annotation rows when loading target profile.

Neal Wilson 10 yıl önce
ebeveyn
işleme
e70f506a1b
1 değiştirilmiş dosya ile 5 ekleme ve 1 silme
  1. 5
    1
      config/Windows/newbatch.xml

+ 5
- 1
config/Windows/newbatch.xml Dosyayı Görüntüle

@@ -279,13 +279,17 @@
279 279
 								targetDetector.newMeasurement(data);
280 280
 							}
281 281
 						});
282
-						input.annotation.connect(log.newAnnotation);
283 282
 						var lc;
284 283
 						input.lastColumn.connect(function(c) {
285 284
 							lc = c;
286 285
 							QSettings.setValue("liveColumn", c + 1);
287 286
 							navigationwindow.loggingWindow.postLoadColumnSetup(c)
288 287
 						});
288
+						input.annotation.connect(function(note, tcol, ncol) {
289
+							for(var i = tcol; i < ncol; i++) {
290
+								log.newAnnotation(note, i, ncol);
291
+							}
292
+						});
289 293
 					}
290 294
 				}
291 295
                 query = query.invalidate();

Loading…
İptal
Kaydet