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:
Mateus Etto 2022-06-27 16:27:56 +09:00 committed by GitHub
parent bebc6fd23a
commit af8ae69837
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 1 deletions

View file

@ -75,6 +75,7 @@ Meredith Derecho <meredithderecho@gmail.com>
Daniel Wallgren <github.com/wallgrenen>
Kerrick Staley <kerrick@kerrickstaley.com>
Maksim Abramchuk <maximabramchuck@gmail.com>
Mateus Etto <mateus.etto@gmail.com>
Benjamin Kulnik <benjamin.kulnik@student.tuwien.ac.at>
Shaun Ren <shaun.ren@linux.com>
Ryan Greenblatt <greenblattryan@gmail.com>

View file

@ -1532,7 +1532,11 @@ title="{}" {}>{}</button>""".format(
).run_in_background()
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: