Upload files to 'studio'
This commit is contained in:
parent
a5f9ca61a4
commit
36ec771c4c
1 changed files with 12 additions and 1 deletions
|
@ -404,7 +404,7 @@ def draw(outlayer, win, path):
|
|||
# Saving
|
||||
save(path, win.checklists[path])
|
||||
win.checklists = {}
|
||||
|
||||
win.assets = {}
|
||||
|
||||
# Grab
|
||||
if win.current["LMB"]\
|
||||
|
@ -459,6 +459,7 @@ def draw(outlayer, win, path):
|
|||
# Saving
|
||||
save(path, win.checklists[path])
|
||||
win.checklists = {}
|
||||
win.assets = {}
|
||||
|
||||
elif win.current["LMB"]:
|
||||
UI_color.set(layer, win, "progress_background")
|
||||
|
@ -490,6 +491,7 @@ def draw(outlayer, win, path):
|
|||
# Saving
|
||||
save(path, win.checklists[path])
|
||||
win.checklists = {}
|
||||
win.assets = {}
|
||||
|
||||
elif win.current["LMB"]:
|
||||
inside = True
|
||||
|
@ -574,6 +576,7 @@ def draw(outlayer, win, path):
|
|||
# Saving
|
||||
save(path, win.checklists[path])
|
||||
win.checklists = {}
|
||||
win.assets = {}
|
||||
|
||||
UI_elements.roundrect(layer, win,
|
||||
sx,
|
||||
|
@ -661,6 +664,7 @@ def draw(outlayer, win, path):
|
|||
# Saving
|
||||
save(path, win.checklists[path])
|
||||
win.checklists = {}
|
||||
win.assets = {}
|
||||
|
||||
UI_elements.roundrect(layer, win,
|
||||
sx,
|
||||
|
@ -690,6 +694,7 @@ def draw(outlayer, win, path):
|
|||
# Saving
|
||||
save(path, win.checklists[path])
|
||||
win.checklists = {}
|
||||
win.assets = {}
|
||||
|
||||
|
||||
if not task["editing"]:
|
||||
|
@ -737,6 +742,7 @@ def draw(outlayer, win, path):
|
|||
def button():
|
||||
do()
|
||||
win.checklists = {}
|
||||
win.assets = {}
|
||||
|
||||
UI_elements.roundrect(layer, win,
|
||||
sx+39 + width - cXY[0] - 80,
|
||||
|
@ -864,6 +870,11 @@ def draw(outlayer, win, path):
|
|||
win.current["LMB"] = False
|
||||
win.previous["LMB"] = False
|
||||
|
||||
# Saving
|
||||
save(path, win.checklists[path])
|
||||
win.checklists = {}
|
||||
win.assets = {}
|
||||
|
||||
elif win.current["LMB"]:
|
||||
UI_color.set(layer, win, "progress_background")
|
||||
UI_elements.roundrect(layer, win,
|
||||
|
|
Loading…
Reference in a new issue