From 6c0c6b5fec5f6e76c9bf6622c91743a35e78a1e4 Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Sat, 5 May 2012 00:10:20 +0900 Subject: [PATCH] make sure to start the timebox from a click too --- aqt/toolbar.py | 1 + 1 file changed, 1 insertion(+) diff --git a/aqt/toolbar.py b/aqt/toolbar.py index 229598638..1c229d2e3 100644 --- a/aqt/toolbar.py +++ b/aqt/toolbar.py @@ -69,6 +69,7 @@ class Toolbar(object): elif l == "study": # if overview already shown, switch to review if self.mw.state == "overview": + self.mw.col.startTimebox() self.mw.moveToState("review") else: self.mw.onOverview()