mirror of
https://github.com/ankitects/anki.git
synced 2025-09-20 06:52:21 -04:00
Set minimum height for ChangeNotetypeDialog
This commit is contained in:
parent
d273ea2923
commit
c9c93567e9
1 changed files with 1 additions and 1 deletions
|
@ -45,7 +45,7 @@ class ChangeNotetypeDialog(QDialog):
|
|||
def _setup_ui(self, notetype_id: NotetypeId) -> None:
|
||||
self.setWindowModality(Qt.WindowModality.ApplicationModal)
|
||||
self.mw.garbage_collect_on_dialog_finish(self)
|
||||
self.setMinimumWidth(400)
|
||||
self.setMinimumSize(400, 300)
|
||||
disable_help_button(self)
|
||||
restoreGeom(self, self.TITLE)
|
||||
addCloseShortcut(self)
|
||||
|
|
Loading…
Reference in a new issue