Title need undo redo

This commit is contained in:
wqy
2022-09-03 00:34:25 +08:00
parent 9b2b54e9ab
commit cce5f55a24
2 changed files with 19 additions and 4 deletions

View File

@@ -1,3 +1,4 @@
from operation import execute_undo
from project import *
from s1_title import *
@@ -20,5 +21,11 @@ print(get_title(p))
set_title(p, "test")
print(get_title(p))
execute_undo(p)
print(get_title(p))
execute_undo(p)
print(get_title(p))
close_project(p)
delete_project(p)