Skip to content

Commit 9a5c41f

Browse files
committed
Fix CTRL+C / CTRL+V
1 parent 86708cc commit 9a5c41f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

addons/dialogic/Editor/VisualEditor/VisualEditor.gd

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -434,7 +434,7 @@ func _input(event):
434434
get_viewport().set_input_as_handled()
435435

436436
# CTRL C
437-
if is_event_pressed(event, KEY_V, false, false, true):
437+
if is_event_pressed(event, KEY_C, false, false, true):
438438
copy_selected_events()
439439
get_viewport().set_input_as_handled()
440440

@@ -609,7 +609,6 @@ func copy_selected_events():
609609
func paste_check():
610610
var _json = JSON.new()
611611
var clipboard_parse = _json.parse(DisplayServer.clipboard_get())
612-
613612
if clipboard_parse == OK:
614613
clipboard_parse = _json.get_data()
615614
if clipboard_parse.has("project_name"):

0 commit comments

Comments
 (0)