From 68f6bf04e7c710e59c3f30b646836e6097df673a Mon Sep 17 00:00:00 2001 From: rorist <rorist@0xcafe.ch> Date: Fri, 25 Aug 2023 21:38:47 +0200 Subject: [PATCH] fix time sig --- __init__.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/__init__.py b/__init__.py index 3369a67..06efd08 100755 --- a/__init__.py +++ b/__init__.py @@ -37,9 +37,9 @@ class EndlessSequencer(Application): self.startTime = time.ticks_ms() self.SILENCE = 99 self.bpm = 120 - self.time_signature = [0.5, 1, 2] # 1/16, 1/8, 1/4 - self.time_signature_txt = ['1/16', '1/4', '1/8'] - self.current_time_signature = 2 # 1/8 + self.time_signature = [0.5, 2, 1] + self.time_signature_txt = ['1/16', '1/8', '1/4'] + self.current_time_signature = 1 # 1/8 def draw(self, ctx: Context) -> None: ctx.rgb(*colours.BLACK) -- GitLab