From 949927cc394af5a7a447f3cd51f6bb0c176effa8 Mon Sep 17 00:00:00 2001 From: Ben Loftis Date: Thu, 2 Aug 2018 10:35:54 -0500 Subject: [PATCH] Remove "This is a script" note on some Lua dialogs. --- scripts/reset_mixer.lua | 3 --- scripts/track_organizer.lua | 6 ------ 2 files changed, 9 deletions(-) diff --git a/scripts/reset_mixer.lua b/scripts/reset_mixer.lua index bdd1e3ae71..db8fb8ce5d 100644 --- a/scripts/reset_mixer.lua +++ b/scripts/reset_mixer.lua @@ -15,9 +15,6 @@ function factory() return function() { type = "checkbox", key = "plug", default = true, title = "Plug-ins" }, { type = "checkbox", key = "sends", default = true, title = "Sends and inserts" }, { type = "checkbox", key = "dest", default = false, title = "Remove plug-ins instead of bypassing?" }, - { type = "label", colspan="3", title = "" }, - { type = "label", colspan="3", title = "Note that this is a script which can be user-edited to match your needs." }, - { type = "label", colspan="3", title = "" }, } local pref = LuaDialog.Dialog("Reset Mixer", dlg):run() diff --git a/scripts/track_organizer.lua b/scripts/track_organizer.lua index e4d9765bed..15caf2c9ff 100644 --- a/scripts/track_organizer.lua +++ b/scripts/track_organizer.lua @@ -63,12 +63,6 @@ function factory () return function () }) --color end - table.insert(dialog_options, { - { type = "label", colspan="3", title = "" }, - { type = "label", colspan="3", title = "Note that this is a script which can be user-edited to match your needs." }, - { type = "label", colspan="3", title = "" }, - }) - --run dialog_options local rv = LuaDialog.Dialog("Track Organizer", dialog_options):run() if not(rv) then goto script_end end -- 2.30.2