Browse Source

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

Neal Wilson 10 years ago
parent
commit
e70f506a1b
1 changed files with 5 additions and 1 deletions
  1. 5
    1
      config/Windows/newbatch.xml

+ 5
- 1
config/Windows/newbatch.xml View File

279
 								targetDetector.newMeasurement(data);
279
 								targetDetector.newMeasurement(data);
280
 							}
280
 							}
281
 						});
281
 						});
282
-						input.annotation.connect(log.newAnnotation);
283
 						var lc;
282
 						var lc;
284
 						input.lastColumn.connect(function(c) {
283
 						input.lastColumn.connect(function(c) {
285
 							lc = c;
284
 							lc = c;
286
 							QSettings.setValue("liveColumn", c + 1);
285
 							QSettings.setValue("liveColumn", c + 1);
287
 							navigationwindow.loggingWindow.postLoadColumnSetup(c)
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
                 query = query.invalidate();
295
                 query = query.invalidate();

Loading…
Cancel
Save