From 25cc3eceb52a1c983c3508c4b532b5037a0ec479 Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Tue, 6 Jun 2017 16:16:00 +1000 Subject: [PATCH] make sure stats window starts focused on osx --- aqt/stats.py | 1 + 1 file changed, 1 insertion(+) diff --git a/aqt/stats.py b/aqt/stats.py index 7ddaa5755..f11530fcd 100644 --- a/aqt/stats.py +++ b/aqt/stats.py @@ -40,6 +40,7 @@ class DeckStats(QDialog): addCloseShortcut(self) self.refresh() self.show() + self.activateWindow() def reject(self): saveGeom(self, self.name)