From 35964fa55cde8c30471eff3b23ee8b00063d0084 Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Mon, 2 Sep 2019 09:52:04 +1000 Subject: [PATCH] reduce editcurrent width constraint https://anki.tenderapp.com/discussions/ankidesktop/35724-bug-edit-window-not-resizable --- aqt/editcurrent.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aqt/editcurrent.py b/aqt/editcurrent.py index f5da5c4e1..79377d689 100644 --- a/aqt/editcurrent.py +++ b/aqt/editcurrent.py @@ -20,7 +20,7 @@ class EditCurrent(QDialog): self.form.setupUi(self) self.setWindowTitle(_("Edit Current")) self.setMinimumHeight(400) - self.setMinimumWidth(500) + self.setMinimumWidth(250) self.form.buttonBox.button(QDialogButtonBox.Close).setShortcut( QKeySequence("Ctrl+Return")) self.editor = aqt.editor.Editor(self.mw, self.form.fieldsArea, self)