(self, selecting)
| 732 | self.viewport().update() |
| 733 | |
| 734 | def moveToEndOfView(self, selecting): |
| 735 | self.cursorAddr = self.getEnd() |
| 736 | if not selecting: |
| 737 | self.selectNone() |
| 738 | self.repositionCaret() |
| 739 | if self.selectionVisible or selecting: |
| 740 | self.viewport().update() |
| 741 | |
| 742 | def addressFromLocation(self, x, y): |
| 743 | if y < 0: |
no test coverage detected