From 20760f6dc9eb9d73581b7467ce97eaf9b858a471 Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Mon, 26 Feb 2024 12:13:38 +0700 Subject: [PATCH] Use smaller default height https://forums.ankiweb.net/t/import-dialog-is-too-big/41549/10 --- qt/aqt/import_export/import_dialog.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qt/aqt/import_export/import_dialog.py b/qt/aqt/import_export/import_dialog.py index 2bf0b6e95..876e692e6 100644 --- a/qt/aqt/import_export/import_dialog.py +++ b/qt/aqt/import_export/import_dialog.py @@ -55,7 +55,7 @@ class AnkiPackageArgs(ImportArgs): class ImportDialog(QDialog): - DEFAULT_SIZE = (800, 800) + DEFAULT_SIZE = (800, 600) MIN_SIZE = (400, 300) silentlyClose = True