(self, index)
| 176 | self.filelist.setCurrentRow(self.current_entry) |
| 177 | |
| 178 | def set_large_image(self, index): |
| 179 | self.thumbnails[self.current_thumbnail].setFrameShape( |
| 180 | QtWidgets.QFrame.Shape.NoFrame) |
| 181 | self.current_thumbnail = index |
| 182 | pixmap = QtGui.QPixmap(os.fspath( |
| 183 | self.entries[self.current_entry] |
| 184 | .thumbnails[self.current_thumbnail])) |
| 185 | self.image_display.setPixmap(pixmap) |
| 186 | self.thumbnails[self.current_thumbnail].setFrameShape( |
| 187 | QtWidgets.QFrame.Shape.Box) |
| 188 | |
| 189 | def accept_test(self): |
| 190 | entry = self.entries[self.current_entry] |
no outgoing calls
no test coverage detected