summaryrefslogtreecommitdiffstats
path: root/GUI
diff options
context:
space:
mode:
authoryum <yum.food.vr@gmail.com>2022-12-29 15:28:32 -0800
committeryum <yum.food.vr@gmail.com>2022-12-29 15:28:32 -0800
commit618487e712f15d92ac9b6655c892cd94ff59d656 (patch)
tree7944ade00761d1e4a65d9ffd42b48c93a22f1a96 /GUI
parent0b5c3841b5c2ed99b718c880bf0f161ac4db0788 (diff)
First letter no longer disappears
An off-by-one issue in numRegions() would result in one extra layer trying to drive a letter in the last region, which would wrap back around to the 0th character slot (cell). * GUI explicitly logs when it's done generating avatar stuff * OSC layer no longer tries to update cells which don't exist
Diffstat (limited to 'GUI')
-rw-r--r--GUI/GUI/GUI/PythonWrapper.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/GUI/GUI/GUI/PythonWrapper.cpp b/GUI/GUI/GUI/PythonWrapper.cpp
index d9dcc18..9cfaeba 100644
--- a/GUI/GUI/GUI/PythonWrapper.cpp
+++ b/GUI/GUI/GUI/PythonWrapper.cpp
@@ -443,6 +443,7 @@ bool PythonWrapper::GenerateAnimator(
}
}
+ Log(out, "Done!\n");
return true;
}