Hi.
I’ve got a little shortcut that is a 2nd fullscreen toggle shortcut. I just noticed that if I’ve got the Scripting Terminal & Editor open (but am in Renoise), and press the 2nd fullscreen, the Scripting Terminal & Editor vanishes completely, and cannot be called with the usual method (the shortcut I’ve configured to switch between Renoise and Scripting Terminal & Editor. (Move Focus to next window)
renoise.tool():add_keybinding {
name = "Global:Paketti:2nd Fullscreen...",
invoke = function()
local w=renoise.app().window
if w.fullscreen== true then
w.fullscreen = false
else
w.fullscreen = true
end
end}
It’s very strange to notice that the scripting terminal&editor is not kept safe but instead perishes on the way.