seantronsen / pvt

GNU General Public License v3.0
0 stars 0 forks source link

Link PyQt Widgets to their Parents #27

Closed seantronsen closed 7 months ago

seantronsen commented 7 months ago

It seems that I've gone against some of the better practices with this library. Let's ensure a consistent implementation where all widgets are pulled into the "GUI Tree" by assigning each a parent widget.

seantronsen commented 7 months ago

After some review, I found few cases where this turned out to be required and most often it was for little things like QTimer. Typically when a widget is added to a layout or when anything is added to or set as anything, the higher level component / wrapper is assigned as the parent.

seantronsen commented 7 months ago

Changes impl. in: 266782d Closing.