Supply Editor / Qt4 Port Fix / April 3, 2008 (Phil)
Broken: When this dialog box is used for editing an existing Supply, two combo boxes are dynamically replaced with labels. This mechanism depended on Layout objects defined in the UI file to retain meaningful names. Unfortunately, those names are not retained in the generated code. The ComboBoxes are deleted, but the new labels intended to replace those are not placed into the layout -- that code had been commented out. |
The UI file was modified to replace the nested layouts with QFrame widgets. At run time, we aquire the layouts of those new QFrame widgets in order to insert the new labels. For some reason, the layouts are not being adjusted correctly -- Notice that the Destination Account name is unnecessarily wrapped. There is unsued horizontal space, and I haven't figured out why. But this is good enough for now. |