Fix script name of pre-seeded scripts (amend c2ffa07e28)

This commit is contained in:
Robin Gareus 2020-11-15 00:41:24 +01:00
parent cbe4de0f5a
commit b6ae22cfed
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04
1 changed files with 1 additions and 1 deletions

View File

@ -1509,7 +1509,7 @@ LuaInstance::pre_seed_script (std::string const& name, int& id)
LuaScriptParamList lsp = LuaScriptParams::script_params (ls, spi->path, "action_params");
LuaScriptParamPtr lspp (new LuaScriptParam("x-script-origin", "", spi->path, false, true));
lsp.push_back (lspp);
set_lua_action (id++, "Mixer Screenshot", script, lsp);
set_lua_action (id++, name, script, lsp);
} catch (...) { }
}
}