Re-add round easing

This commit is contained in:
Darren Burns
2022-09-07 15:42:04 +01:00
parent 5018de11a6
commit 39a45bc464

View File

@@ -21,7 +21,7 @@ END_POSITION = float(VIRTUAL_SIZE - WINDOW_SIZE)
class EasingButtons(Widget):
def compose(self) -> ComposeResult:
for easing in sorted([e for e in EASING if e != "round"], reverse=True):
for easing in sorted(EASING, reverse=True):
yield Button(easing, id=easing)