mirror of
https://github.com/ankitects/anki.git
synced 2025-09-24 16:56:36 -04:00
groupsel->groupman
This commit is contained in:
parent
03d0348fd2
commit
d923753c4d
3 changed files with 6 additions and 6 deletions
|
@ -14,11 +14,11 @@ COLDUE = 3
|
|||
COLNEW = 4
|
||||
GREY = "#777"
|
||||
|
||||
class GroupSel(QDialog):
|
||||
class GroupManager(QDialog):
|
||||
def __init__(self, mw):
|
||||
QDialog.__init__(self, mw)
|
||||
self.mw = mw
|
||||
self.form = aqt.forms.groupsel.Ui_Dialog()
|
||||
self.form = aqt.forms.groupman.Ui_Dialog()
|
||||
self.form.setupUi(self)
|
||||
self.loadTable()
|
||||
self.addButtons()
|
||||
|
@ -59,7 +59,7 @@ class GroupSel(QDialog):
|
|||
self.connect(box,
|
||||
SIGNAL("helpRequested()"),
|
||||
lambda: QDesktopServices.openUrl(QUrl(
|
||||
aqt.appWiki + "GroupSelection")))
|
||||
aqt.appWiki + "GroupManager")))
|
||||
|
||||
def onStudy(self):
|
||||
self.mw.deck.reset()
|
|
@ -177,5 +177,5 @@ $(function () {
|
|||
##########################################################################
|
||||
|
||||
def changeGroups(self):
|
||||
from aqt.groupsel import GroupSel
|
||||
g = GroupSel(self.mw)
|
||||
from aqt.groupman import GroupManager
|
||||
g = GroupManager(self.mw)
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
</rect>
|
||||
</property>
|
||||
<property name="windowTitle">
|
||||
<string>Select Groups</string>
|
||||
<string>Groups</string>
|
||||
</property>
|
||||
<layout class="QHBoxLayout" name="horizontalLayout">
|
||||
<item>
|
Loading…
Reference in a new issue