From bf4057ce988828967054cd3f5606930ecfcf15c8 Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Sat, 21 Apr 2012 07:26:20 +0900 Subject: [PATCH] don't make the empty cards dialog modal --- aqt/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aqt/main.py b/aqt/main.py index d879cef74..0f8948e4c 100755 --- a/aqt/main.py +++ b/aqt/main.py @@ -892,7 +892,7 @@ will be lost. Continue?""")) self.col.remCards(cids) tooltip(_("%d cards deleted.") % len(cids)) diag.connect(box, SIGNAL("accepted()"), onDelete) - diag.exec_() + diag.show() # Debugging ######################################################################