[Fixed 2.6 Beta] Removing Obvservablestringlist From Document

I was just trying some different things with the Document API and got a reproducable error that crashes Renoise when trying to remove an ObservableStringList.

Try to execute this in the terminal

  
data = renoise.Document.create {  
 ids = {"1", "2"}  
}  
  
data:remove(data:property("ids"))  
  

Is there some other way of removing an observable list completely from the document?

Oh. Good one. Thanks for reporting. Will be fixed in the next beta.

No, unfortunately try to do so will always crash right now.

But you could empty it instead?

  
while (#data.ids > 0) do  
 data.ids:remove()  
end  
  

Great thanks for fixing it. :) Yeah I can just use emptying for now.