(self)
| 579 | self.updateCaret() |
| 580 | |
| 581 | def selectNone(self): |
| 582 | for i in self.lines: |
| 583 | if (self.cursorAddr >= i.address) and (self.cursorAddr < (i.address + i.length)) and i.separator: |
| 584 | self.cursorAddr = i.address + i.length |
| 585 | break |
| 586 | self.selectionStartAddr = self.cursorAddr |
| 587 | if self.selectionVisible: |
| 588 | self.viewport().update() |
| 589 | self.repositionCaret() |
| 590 | UIContext.updateStatus() |
| 591 | |
| 592 | def selectAll(self): |
| 593 | self.selectionStartAddr = self.getStart() |
no test coverage detected