mirror of
https://github.com/ankitects/anki.git
synced 2025-09-19 06:22:22 -04:00
Fix Study Deck in Sway spawning tiled window instead of floating window (#1935)
* Fix Study Deck in sway spawning tiled window instead of floating window * Update CONTRIBUTORS * Fix format error
This commit is contained in:
parent
bebc6fd23a
commit
af8ae69837
2 changed files with 6 additions and 1 deletions
|
@ -75,6 +75,7 @@ Meredith Derecho <meredithderecho@gmail.com>
|
||||||
Daniel Wallgren <github.com/wallgrenen>
|
Daniel Wallgren <github.com/wallgrenen>
|
||||||
Kerrick Staley <kerrick@kerrickstaley.com>
|
Kerrick Staley <kerrick@kerrickstaley.com>
|
||||||
Maksim Abramchuk <maximabramchuck@gmail.com>
|
Maksim Abramchuk <maximabramchuck@gmail.com>
|
||||||
|
Mateus Etto <mateus.etto@gmail.com>
|
||||||
Benjamin Kulnik <benjamin.kulnik@student.tuwien.ac.at>
|
Benjamin Kulnik <benjamin.kulnik@student.tuwien.ac.at>
|
||||||
Shaun Ren <shaun.ren@linux.com>
|
Shaun Ren <shaun.ren@linux.com>
|
||||||
Ryan Greenblatt <greenblattryan@gmail.com>
|
Ryan Greenblatt <greenblattryan@gmail.com>
|
||||||
|
|
|
@ -1532,7 +1532,11 @@ title="{}" {}>{}</button>""".format(
|
||||||
).run_in_background()
|
).run_in_background()
|
||||||
|
|
||||||
StudyDeck(
|
StudyDeck(
|
||||||
self, dyn=True, current=self.col.decks.current()["name"], callback=callback
|
self,
|
||||||
|
parent=self,
|
||||||
|
dyn=True,
|
||||||
|
current=self.col.decks.current()["name"],
|
||||||
|
callback=callback,
|
||||||
)
|
)
|
||||||
|
|
||||||
def onEmptyCards(self) -> None:
|
def onEmptyCards(self) -> None:
|
||||||
|
|
Loading…
Reference in a new issue