mirror of
https://github.com/ankitects/anki.git
synced 2025-11-11 15:17:12 -05:00
work around https://bugreports.qt.io/browse/QTBUG-54755
This commit is contained in:
parent
fb81f63fe3
commit
0bd79abe11
2 changed files with 7 additions and 9 deletions
|
|
@ -640,6 +640,13 @@ title="%s" %s>%s</button>''' % (
|
||||||
self.onStats()
|
self.onStats()
|
||||||
elif key == "y":
|
elif key == "y":
|
||||||
self.onSync()
|
self.onSync()
|
||||||
|
# temp accelerators to work around bug
|
||||||
|
elif key == "/":
|
||||||
|
self.onStudyDeck()
|
||||||
|
elif key == "f":
|
||||||
|
self.onCram()
|
||||||
|
elif evt.matches(QKeySequence.Undo):
|
||||||
|
self.onUndo()
|
||||||
|
|
||||||
# App exit
|
# App exit
|
||||||
##########################################################################
|
##########################################################################
|
||||||
|
|
|
||||||
|
|
@ -145,9 +145,6 @@
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>&Undo</string>
|
<string>&Undo</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="shortcut">
|
|
||||||
<string>Ctrl+Z</string>
|
|
||||||
</property>
|
|
||||||
</action>
|
</action>
|
||||||
<action name="actionCheckMediaDatabase">
|
<action name="actionCheckMediaDatabase">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
|
|
@ -216,9 +213,6 @@
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Study Deck...</string>
|
<string>Study Deck...</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="shortcut">
|
|
||||||
<string>/</string>
|
|
||||||
</property>
|
|
||||||
</action>
|
</action>
|
||||||
<action name="actionEmptyCards">
|
<action name="actionEmptyCards">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
|
|
@ -229,9 +223,6 @@
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Create Filtered Deck...</string>
|
<string>Create Filtered Deck...</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="shortcut">
|
|
||||||
<string>F</string>
|
|
||||||
</property>
|
|
||||||
</action>
|
</action>
|
||||||
<action name="actionNoteTypes">
|
<action name="actionNoteTypes">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue