I'm trying to figure out how to make text scroll upwards in Pyglet's ScrollableTextLayout, rather than down. For sake of clarity, here's a quick snapshot to show what I mean by "up." (Just in case)

How I would like it to behave:

According to the docs, this behavior can be achieved via the view_y property, but I've tried all kinds of different values, but all with no noticeable change.
The code:
import pyglet
class LoadDialog(pyglet.sprite.Sprite):
def __init__(self):
self.lbatch = pyglet.graphics.Batch()
self.loading_window = pyglet.image.load('..\\resources\\loading_base.png')
super(LoadDialog, self).__init__(self.loading_window, batch=self.lbatch)
self.doc = pyglet.text.decode_text('Hello world!'.ljust(40))
self.doc.set_style(0,12, dict(font_name='Arial', font_size=12,
color=(0,0,0,255)))
self.layout = pyglet.text.layout.ScrollableTextLayout(self.doc,
width=self.load_animation.width,
height=100, multiline=True, batch=self.lbatch)
self.layout.x = 220
self.layout.y = 160
self.layout.view_y = -80
def update(self, dx):
self.doc.insert_text(0, "New line".ljust(40))
sprite = LoadDialog()
window = pyglet.window.Window(width=640, height=480)
pyglet.gl.glClearColor(1, 1, 1, 1)
@window.event
def on_draw():
window.clear()
sprite.lbatch.draw()
sprite.layout.draw()
@window.event
def update(dx):
sprite.update(dx)
pyglet.clock.schedule_interval(update, 1.0)
pyglet.app.run()
I've tried tons of values for layout.view_y, from -1 to absurd values like -3000, or 500 just to see if something changes. But it always gives the exact behavior as shown in the first image.
What am I doing wrong?