Hi, this is pretty cool and wonky. I decided to try to do a “starter screenset” for gmm04e and lo and behold, started getting pretty funny behaviour.
Notice how the Disk Browser displays something (I know from the filesizes that it’s displaying the Song tab of Disk Browser - yet the filenames are lost). That’s what this currently does:
--gmm04e preset#1 is like this: disk browser (song), pattern editor, instrument settings.
function gmm04e()
local w=renoise.app().window
w.active_lower_frame = 3
w.active_upper_frame = 1
w.active_middle_frame= 2
w.upper_frame_is_visible = true
w.lower_frame_is_visible = true
w.lock_keyboard_focus=true
renoise.app():show_status("Renoise gmm04e startscreen initialized test")
end
renoise.tool().app_new_document_observable:add_notifier(function() gmm04e()
end)
I’m trying to replicate the weird “similar” bugginess I got from Mixer-view being displayed too - it looks strangely the same as the buggy diskbrowser. Btw, even if I change upper_frame 1,2,3,4 and back to 1, the disk browser will still be broken. Even if upper_frame_is_visible is false, it still shows up buggy.
I hope to be able to get that mixer-view to break again, would love to attach a screenshot
yup, got it to work!
So even mixer shows up all buggy, upon restarting Renoise with the script
Here’s both buggy diskbrowser and buggy mixer-view…
[details=“Click to view contents”] ```
renoise.tool().app_new_document_observable:add_notifier(function() --gmm04e()
local w=renoise.app().window
w.upper_frame_is_visible = true
w.lower_frame_is_visible = true
w.active_lower_frame = 3
w.active_upper_frame = 1
w.active_middle_frame= 2
w.lock_keyboard_focus=true
renoise.app():show_status(“Renoise gmm04e startscreen initializedtöst”)
end)