How did you split the Tree view and the Property view in different panels?
The right side panel is just the combo view where i pulled up the "data view" widget to cover the tree. The left side view is the Glass addon (download with the addon manager) wich @triplus was kind enough to help me to modify. It's really easy tough. Once downloaded the addon go to your .FreeCAD/Mod/Glass/ folder then replace the line 35 of GlassGui.py with:
Code: Select all
dock = mw.findChild(QtGui.QDockWidget, "Tree view")
Code: Select all
widget.setStyleSheet(" background:transparent; border:none; color:white;")
Thanks, but...OficineRobotica wrote: ↑Sat Mar 16, 2019 6:33 amThe right side panel is just the combo view where i pulled up the "data view" widget to cover the tree. The left side view is the Glass addon (download with the addon manager) wich @triplus was kind enough to help me to modify.