mirror of
https://github.com/ankitects/anki.git
synced 2026-01-13 22:13:58 -05:00
Add streak display to overview window
This commit is contained in:
parent
bf77c0b974
commit
5ecdd310e5
1 changed files with 7 additions and 3 deletions
|
|
@ -49,13 +49,15 @@ class Overview:
|
||||||
|
|
||||||
self.streak_label = QLabel()
|
self.streak_label = QLabel()
|
||||||
self.streak_label.setText("")
|
self.streak_label.setText("")
|
||||||
self.streak_label.setStyleSheet("""
|
self.streak_label.setStyleSheet(
|
||||||
|
"""
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
color: orange;
|
color: orange;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
qproperty-alignment: AlignCenter;
|
qproperty-alignment: AlignCenter;
|
||||||
""")
|
"""
|
||||||
|
)
|
||||||
|
|
||||||
streak_layout = QHBoxLayout()
|
streak_layout = QHBoxLayout()
|
||||||
streak_layout.addStretch()
|
streak_layout.addStretch()
|
||||||
|
|
@ -315,7 +317,9 @@ class Overview:
|
||||||
b[0] = tr.actions_shortcut_key(val=shortcut(b[0]))
|
b[0] = tr.actions_shortcut_key(val=shortcut(b[0]))
|
||||||
buf += f"""
|
buf += f"""
|
||||||
<button title="{b[0]}" onclick='pycmd("{b[1]}")'>{b[2]}</button>"""
|
<button title="{b[0]}" onclick='pycmd("{b[1]}")'>{b[2]}</button>"""
|
||||||
self.bottom.draw(buf=buf, link_handler=link_handler, web_context=OverviewBottomBar(self))
|
self.bottom.draw(
|
||||||
|
buf=buf, link_handler=link_handler, web_context=OverviewBottomBar(self)
|
||||||
|
)
|
||||||
|
|
||||||
def onStudyMore(self) -> None:
|
def onStudyMore(self) -> None:
|
||||||
import aqt.customstudy
|
import aqt.customstudy
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue