santicor opened this issue on Mar 02, 2021 ยท 6 posts
adp001 posted Tue, 02 March 2021 at 1:06 PM
Maybe this helps:
Save this into a file ("dontdrag.py" or whatever you like). From Poser Menu use "File -> Run Python Script" and point to the file you saved.
from __future__ import print_function
for p in poser.WxAuiManager().GetAllPanes():
p.Movable(False).Dockable(True).Dock().Floatable(False)
print("Done.")