(self, source, event)
| 263 | screen.logicalDotsPerInchChanged.connect(self._update_pixel_ratio) |
| 264 | |
| 265 | def eventFilter(self, source, event): |
| 266 | if event.type() == QtCore.QEvent.Type.DevicePixelRatioChange: |
| 267 | self._update_pixel_ratio() |
| 268 | return super().eventFilter(source, event) |
| 269 | |
| 270 | def showEvent(self, event): |
| 271 | # Set up correct pixel ratio, and connect to any signal changes for it, |
nothing calls this directly
no test coverage detected