Skip to content

Commit b314151

Browse files
committed
Fixing regresion from 41e7a35, where a comma turned into a period, breaking our ability drop a file on the timeline and move it.
1 parent 76bffaf commit b314151

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/windows/views/timeline_webview.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2993,7 +2993,7 @@ def dropEvent(self, event):
29932993

29942994
if self.item_type in ["clip", "transition"] and self.item_id:
29952995
# Update most recent clip
2996-
self.eval_js(JS_SCOPE_SELECTOR + ".UpdateRecentItemJSON('{}'. '{}');".format(self.item_type, self.item_id))
2996+
self.eval_js(JS_SCOPE_SELECTOR + ".UpdateRecentItemJSON('{}', '{}');".format(self.item_type, self.item_id))
29972997

29982998
elif self.item_type == "effect":
29992999
# Add effect only on drop

0 commit comments

Comments
 (0)