Mercurial > hg > svgui
changeset 246:d9a01a817e8b
* Fix #1707133 osx right pane too narrow
author | Chris Cannam |
---|---|
date | Fri, 27 Apr 2007 15:42:23 +0000 |
parents | 447cb52adc6b |
children | 0e9f59f991aa |
files | view/PaneStack.cpp |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/view/PaneStack.cpp Fri Apr 27 15:39:48 2007 +0000 +++ b/view/PaneStack.cpp Fri Apr 27 15:42:23 2007 +0000 @@ -429,8 +429,8 @@ << m_panes[i].propertyStack->sizeHint().width() << ", current " << m_panes[i].propertyStack->width() << std::endl; - if (m_panes[i].propertyStack->minimumSizeHint().width() > maxMinWidth) { - maxMinWidth = m_panes[i].propertyStack->minimumSizeHint().width(); + if (m_panes[i].propertyStack->sizeHint().width() > maxMinWidth) { + maxMinWidth = m_panes[i].propertyStack->sizeHint().width(); } }