diff --git a/definitions/defaults/global.lua b/definitions/defaults/global.lua index 2cb2c1c8..621aa6cd 100644 --- a/definitions/defaults/global.lua +++ b/definitions/defaults/global.lua @@ -293,8 +293,6 @@ return { ["d"] = "CutInputFxChain", }}, ["s"] = {"+show", { - ["n"] = "ShowNextFx", - ["p"] = "ShowPrevFx", ["1"] = "ToggleShowFx1", ["2"] = "ToggleShowFx2", ["3"] = "ToggleShowFx3", @@ -305,7 +303,7 @@ return { ["8"] = "ToggleShowFx8" }}, }}, - ["%"] = { "+tempo", { + ["T"] = { "+timeline", { ["e"] = "EditTimeSignatureMarker", ["d"] = "DeleteTimeSignatureMarker", ["s"] = "ToggleShowTempoEnvelope" @@ -336,7 +334,7 @@ return { ["s"] = "UnsoloAllTracks", ["m"] = "UnmuteAllTracks", }}, - ["a"] = { "+automation/mode", { + ["a"] = { "+automation", { ["r"] = "SetGlobalAutomationModeTrimRead", ["l"] = "SetGlobalAutomationModeLatch", ["p"] = "SetGlobalAutomationModeLatchPreview", diff --git a/definitions/gui_config.lua b/definitions/gui_config.lua index 190cfae4..e0681bcd 100644 --- a/definitions/gui_config.lua +++ b/definitions/gui_config.lua @@ -23,7 +23,6 @@ return { timeline_selector = {0.85, 0.6, 0.47, 1}, timeline_operator = {0.8, 0.51, 0.5, 1}, visual_timeline_command = {0.7, 0.8, 0.58, 1}, - record_action = {1, 0.22, 0.23, 1}, }, feedback = { idle_time_until_show = .2, @@ -43,7 +42,6 @@ return { visual_timeline = {0.7, 0.8, 0.58, 1}, extra_info = {1, 1, 1, .4}, visual_track = {0.65, 0.8, 0.8, 1}, - record = {1, 0.22, 0.23, 1}, key = {0.7, 0.51, 0.8, 1}, arrow = {0.3, 0.51, 0.8, 1}, folder = {0.6, 1, 0.85, .6}, diff --git a/internal/command/action_sequence_functions/global.lua b/internal/command/action_sequence_functions/global.lua index 99c2f576..656f2fe4 100644 --- a/internal/command/action_sequence_functions/global.lua +++ b/internal/command/action_sequence_functions/global.lua @@ -79,13 +79,5 @@ return { runner.extendTimelineSelection(move_function, args) end }, - }, - record = { - { - { 'record_action' }, - function(action) - runner.runAction(action) - end - } - }, + } }