From fb420bae018e87c7b4d57d9a777614001a61b321 Mon Sep 17 00:00:00 2001 From: mostlysimlar Date: Fri, 29 May 2020 20:35:38 -0700 Subject: [PATCH] fix: change 'insert' operators to be binded to 'a' so to not clash with '+inner' --- definitions/global.lua | 2 +- definitions/main.lua | 4 ++-- definitions/midi.lua | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/definitions/global.lua b/definitions/global.lua index 22672a91..d7e37e86 100644 --- a/definitions/global.lua +++ b/definitions/global.lua @@ -219,7 +219,7 @@ return { ["c"] = "ViewFxChainMaster", }}, ["e"] = { "+envelope", { - ["s"] = "ToggleShowAllEnvelopeGlobal", + ["t"] = "ToggleShowAllEnvelopeGlobal", }}, ["t"] = { "+track", { ["a"] = "ClearAllRecordArm", diff --git a/definitions/main.lua b/definitions/main.lua index 581578fd..b95e216c 100644 --- a/definitions/main.lua +++ b/definitions/main.lua @@ -62,7 +62,6 @@ return { [""] = "CutEnvelopePoints", [""] = "CopyEnvelopePoints", [""] = "DeleteTimeline", - [""] = "InsertAutomationItem", ["g"] = "GlueItems", ["%"] = "HealSplits", [">"] = "GrowItemRight", @@ -75,7 +74,8 @@ return { ["p"] = "FitByPadding", ["s"] = "FitByStretching", }}, - ["i"] = "InsertOrExtendMidiItem", + ["a"] = "InsertOrExtendMidiItem", + [""] = "InsertAutomationItem", }, timeline_selector = { ["s"] = "SelectedItems", diff --git a/definitions/midi.lua b/definitions/midi.lua index b5d05d19..2b151ca2 100644 --- a/definitions/midi.lua +++ b/definitions/midi.lua @@ -6,7 +6,7 @@ return { ["d"] = "CutNotes", ["y"] = "CopyNotes", ["c"] = "FitNotes", - ["i"] = "InsertNote", + ["a"] = "InsertNote", ["g"] = "JoinNotes", ["s"] = "SelectNotes", ["z"] = "MidiZoomTimeSelection",