print gaps info when click
1 unresolved thread
1 unresolved thread
closes #241 (closed)
Merge request reports
Activity
Filter activity
assigned to @ldam
requested review from @kienle
356 361 else: 357 362 return super().eventFilter(target, event) 358 363 364 def display_gap_info(self, gap_rectangle: pl.Rectangle) -> None: 365 """ 366 Display gap info in tracking box 367 :param gap_rectangle: rectangle that displays the clicked gap on figure 368 """ 369 gap_start = gap_rectangle.get_x() 370 gap_width = gap_rectangle.get_width() 371 gap_end = gap_start + gap_width 372 373 all_gap_starts = list(zip(*self.gaps))[0] 374 gap_order = all_gap_starts.index(gap_start) + 1 changed this line in version 2 of the diff
added 1 commit
- 9a9d71ae - change variable name gap_order to gap_position
requested review from @kienle
added 3 commits
-
9a9d71ae...f1731559 - 2 commits from branch
develop
- f065fcd8 - Merge branch 'develop' into i241-print-gaps-information-when-click
-
9a9d71ae...f1731559 - 2 commits from branch
added 3 commits
-
f065fcd8...19bc5abd - 2 commits from branch
develop
- 0515410f - Merge branch 'develop' into i241-print-gaps-information-when-click
-
f065fcd8...19bc5abd - 2 commits from branch
mentioned in commit d281461c