|
Notes |
|
|
(0016749)
|
|
Ken Moreland
|
|
2009-06-22 12:45
|
|
|
I uploaded an image of the Information panel to demonstrate what I mean. This information comes from loading the can data set, which has about 15 variables and 45 time steps. However, you can hardly see any of them. |
|
|
|
(0016819)
|
|
Robert Maynard
|
|
2009-07-07 09:24
|
|
|
I will confirm that this bug exists under qt 4.4.3 and 4.5.x (win32 & win64). You can fix the problem quickly by modifying Qt/Components/Resources/UI/pqProxyInformationWidget. You just have to add a minimumSize Height information ( 100 worked well for me). |
|
|
|
(0016836)
|
|
Ken Moreland
|
|
2009-07-09 17:06
|
|
|
As I recall, these boxes are supposed to resize themselves based on their contents. That is, if they are empty they are small, but if they have entries they will take up more screen real estate (with some upper bound). It sounds like setting the minimumSize just gets around the problem by fixing the height to some value. I wouldn't want to lose the resizing feature if possible. |
|
|
|
(0016838)
|
|
Robert Maynard
|
|
2009-07-10 09:17
|
|
|
The problem is that under 4.5 the box doesn't resize. So a quick fix is to give it a minimum size. While this is nowhere near the optimal fix, it can be used as a stopgap. |
|
|
|
(0016891)
|
|
Julien Finet
|
|
2009-07-17 15:54
|
|
QT4.5 uses QWidgetItemV2 instead of QWidgetItem, the difference is that QWidgetItemV2 caches the sizeHint of the associated widget. When the pqtreewidget is updated (ie new row), we need to delete the cache. Calling updateGeometry is the only way to clear the cache of the QWidgetItemV2.
File changed: Qt/Widgets/pqTreeWidget.cxx: 1.11 |
|
|
|
(0016915)
|
|
Ken Moreland
|
|
2009-07-20 10:56
|
|
|
Yea. I can see the variable information again. |
|