From 51146ccd51be92fddbce74437cfa71e8a763207f Mon Sep 17 00:00:00 2001 From: Jake Probst Date: Sun, 11 Mar 2012 05:50:20 -0700 Subject: [PATCH] deck and tag section of add card dialog takes up less space --- aqt/editor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aqt/editor.py b/aqt/editor.py index f9a929ff8..bf23e6ba1 100644 --- a/aqt/editor.py +++ b/aqt/editor.py @@ -240,7 +240,7 @@ class Editor(object): self.web = EditorWebView(self.widget, self) self.web.allowDrops = True self.web.setBridge(self.bridge) - self.outerLayout.addWidget(self.web) + self.outerLayout.addWidget(self.web, 1) # pick up the window colour p = self.web.palette() p.setBrush(QPalette.Base, Qt.transparent)