If one has created a menu like the following to show a separator…
renoise.tool():add_menu_entry {
name = "--- Mixer:Snapshot:Name",
invoke = function() do_something() end
}
… and you try to remove this now like below, you have to leave away the "— " or you’ll get an error.
Works:
renoise.tool():remove_menu_entry("Mixer:Snapshot:Name")
Works not:
renoise.tool():remove_menu_entry("--- Mixer:Snapshot:Name")