summaryrefslogtreecommitdiffstats
path: root/Scripts/transcribe_v2.py
diff options
context:
space:
mode:
authoryum <yum.food.vr@gmail.com>2023-09-10 18:29:59 -0700
committeryum <yum.food.vr@gmail.com>2023-09-10 18:33:08 -0700
commit920d6dfeeac132488c85311512fe9e5da505c4a8 (patch)
tree11b7931f4d43eba6e502636f03790b5d3c267093 /Scripts/transcribe_v2.py
parent4f3b9382068a29731de664eb0810f9eb3a267905 (diff)
Fix paging bugv0.15.1
OSC was paging using incorrect board resolution. Use cfg to provide this data.
Diffstat (limited to 'Scripts/transcribe_v2.py')
-rw-r--r--Scripts/transcribe_v2.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Scripts/transcribe_v2.py b/Scripts/transcribe_v2.py
index 2639697..87b88af 100644
--- a/Scripts/transcribe_v2.py
+++ b/Scripts/transcribe_v2.py
@@ -709,10 +709,10 @@ class OscPager:
def page(self, text):
if self.cfg["use_builtin"]:
- osc_ctrl.pageMessageBuiltin(self.osc_state, text)
+ osc_ctrl.pageMessageBuiltin(self.cfg, self.osc_state, text)
self.bumpSyncWindow(amount_s=1.5)
else:
- osc_ctrl.pageMessage(self.osc_state, text, EmotesState())
+ osc_ctrl.pageMessage(self.cfg, self.osc_state, text, EmotesState())
self.bumpSyncWindow()
def bumpSyncWindow(self, amount_s=osc_ctrl.SYNC_DELAY_S):