V8.1 lv.win How to change title text?

Has “lv_win_set_title” been removed?
I am abile to… win.add_title
But I need to change the text periodically.

lv_win_add_title returns a label that you can update as required.

lv_win_add_title just creates another instance… I need to edit the orginal text.

window = lv.scr_act()
win = lv.win(window, 40)
win.add_title(“Options”)

change title from, Options to Settings

window = lv.scr_act()
win = lv.win(window, 40)
label = win.add_title("Options")

label.set_text("Settings")

GOT IT !!! Thank you