JurajKubelka/DiscordSt

Recording GIFs does not work on Roassal animations

Closed this issue · 1 comments

Recording GIFs does not work on Roassal animations

I have tried the following scripts:

textModel := RubScrolledTextModel new.
morph := textModel newScrolledText.
morph beWrapped.
window := morph openInWindow.

text := String loremIpsum: 900.

[ 
    (5 seconds / 16 milliSeconds) asInteger timesRepeat: [  
    textModel setText: text shuffle.
    16 milliSeconds wait ] 
] forkAt: Processor userBackgroundPriority.

that produces:

191196928-1

And the following demo:

AthensFlakeDemo new openInWindow

that produces:

193459712-1

Both works, so it looks like an issue with the Roassal2. Maybe the animation is not done correctly?