This commit is contained in:
2023-07-08 19:10:59 -07:00
parent 7b7e4af01e
commit 112943ead1
2 changed files with 5 additions and 3 deletions

View File

@ -29,7 +29,7 @@ void VNTextboxScroller::onStart() {
x();
useEvent(x, this->label->eventTextChanged);
// useEffect(x, visibleLines);
useEffect(x, visibleLines);
useEvent([&](float_t delta){
auto game = this->getGame();

View File

@ -108,6 +108,8 @@ void UILabel::rebufferQuads(const std::vector<struct UILabelText> newTexts) {
quadCountTotal = 0;
std::vector<struct UILabelText> realNewTexts;
float_t maxWidth = this->width;
// Reset
lines.clear();
@ -236,8 +238,8 @@ void UILabel::rebufferQuads(const std::vector<struct UILabelText> newTexts) {
if(
ch != ' ' &&
lastSpaceCharacter != -1 &&
this->width > charInfo.bitmapSize.x &&
(position.x + charInfo.advanceX) > this->width
maxWidth > charInfo.bitmapSize.x &&
(position.x + charInfo.advanceX) > maxWidth
) {
// Basically this rewinds everything we've done to the last space char,
// changes it to a newline, and then moves the position along.