Remove "This is a script" note on some Lua dialogs.
authorBen Loftis <ben@harrisonconsoles.com>
Thu, 2 Aug 2018 15:35:54 +0000 (10:35 -0500)
committerBen Loftis <ben@harrisonconsoles.com>
Thu, 2 Aug 2018 15:36:49 +0000 (10:36 -0500)
scripts/reset_mixer.lua
scripts/track_organizer.lua

index bdd1e3ae71da96fbb75edb8a524997cf0e983099..db8fb8ce5d73a703302f20184a819caa2a5919d6 100644 (file)
@@ -15,9 +15,6 @@ function factory() return function()
                { type = "checkbox", key = "plug",  default = true,  title = "Plug-ins" },\r
                { type = "checkbox", key = "sends", default = true,  title = "Sends and inserts" },\r
                { type = "checkbox", key = "dest",  default = false, title = "Remove plug-ins instead of bypassing?" },\r
-               { type = "label", colspan="3", title = "" },\r
-               { type = "label", colspan="3", title = "Note that this is a script which can be user-edited to match your needs." },\r
-               { type = "label", colspan="3", title = "" },\r
        }\r
 \r
        local pref = LuaDialog.Dialog("Reset Mixer", dlg):run()\r
index e4d9765bed69b1d14e028b8f66ebc169b5efb572..15caf2c9ff65ce1b9d5e4bd6345ada7768473bbc 100644 (file)
@@ -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