Improved margins in Card Browser's "Preview" pane

This commit is contained in:
jcznk 2025-09-16 13:12:43 +02:00 committed by GitHub
parent 4506ad0c97
commit bbec13cef1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -81,7 +81,7 @@ class Previewer(QDialog):
qconnect(self.finished, self._on_finished)
self.silentlyClose = True
self.vbox = QVBoxLayout()
self.vbox.setContentsMargins(0, 0, 0, 0)
self.vbox.setContentsMargins(0, 0, 2, 4)
self._web: AnkiWebView | None = AnkiWebView(kind=AnkiWebViewKind.PREVIEWER)
self.vbox.addWidget(self._web)
self.bbox = QDialogButtonBox()