drop the d shortcut from the overview

This commit is contained in:
Damien Elmes 2011-04-24 10:23:14 +09:00
parent 60001e41e4
commit 8567a5d7ae

View file

@ -35,8 +35,6 @@ class Overview(object):
self._linkHandler("study") self._linkHandler("study")
elif txt == "c": elif txt == "c":
self._linkHandler("cram") self._linkHandler("cram")
elif txt == "d":
self._linkHandler("list")
else: else:
return return
return True return True
@ -51,8 +49,6 @@ class Overview(object):
self.mw.moveToState("review") self.mw.moveToState("review")
elif url == "opts": elif url == "opts":
self.mw.onStudyOptions() self.mw.onStudyOptions()
elif url == "list":
self.mw.close()
elif url == "chgrp": elif url == "chgrp":
self.mw.onGroups() self.mw.onGroups()