In settings, please add “Save default size”.
Shouldn’t have to drag out the size on every instantiation.
Thank you!
In settings, please add “Save default size”.
Shouldn’t have to drag out the size on every instantiation.
Thank you!
Thanks, We’re looking into this.
yes please, that would be very helpful.
Not sure if this works in other DAWs, but I get around this issue in reaper by loading up an instance of playbeat and changing the GUI size then saving as the default (reaper plugin window setting). There should be a similar save as default in other DAWs, sorry not 100% sure if there is or what it would be called. Might be useful until they fix this.
yes please add this option to your plugins coz right now i wrote some autohotkey code to do this for me
for anyone interested this workaround ahk script works for me in the standalone and in my daw but it requires having autohotkey v1 installed obviously, and the winmove numbers filled in are whats good for me it needs your tweaking. script must run before you start playbeat 4
#SingleInstance, Force
gosub, winwait
return
winwait:
WinWaitActive, Playbeat 4
; WinMove, WinTitle, WinText, X, Y , Width, Height, ExcludeTitle, ExcludeText
WinMove, Playbeat 4, , , 0, 1338, 1038
WinWaitClose, Playbeat 4
gosub, winwait
return