summaryrefslogtreecommitdiff
path: root/extensions
diff options
context:
space:
mode:
Diffstat (limited to 'extensions')
-rw-r--r--extensions/source/propctrlr/browserlistbox.cxx9
1 files changed, 5 insertions, 4 deletions
diff --git a/extensions/source/propctrlr/browserlistbox.cxx b/extensions/source/propctrlr/browserlistbox.cxx
index 9d6b899ce0e2..93e901f98131 100644
--- a/extensions/source/propctrlr/browserlistbox.cxx
+++ b/extensions/source/propctrlr/browserlistbox.cxx
@@ -332,9 +332,11 @@ namespace pcr
,m_bUpdate(true)
,m_pControlContextImpl( new PropertyControlContext_Impl( *this ) )
{
- ScopedVclPtrInstance< ListBox > aListBox(this,WB_DROPDOWN);
- aListBox->SetPosSizePixel(Point(0,0),Size(100,100));
- m_nRowHeight = aListBox->GetSizePixel().Height()+2;
+ ScopedVclPtrInstance<ListBox> aListBox(this, WB_DROPDOWN);
+ ScopedVclPtrInstance<Edit> aEditBox(this);
+ m_nRowHeight = std::max(aListBox->get_preferred_size().Height(),
+ aEditBox->get_preferred_size().Height());
+ m_nRowHeight += 2;
SetBackground( pParent->GetBackground() );
m_aLinesPlayground->SetBackground( GetBackground() );
@@ -345,7 +347,6 @@ namespace pcr
m_aVScroll->SetScrollHdl(LINK(this, OBrowserListBox, ScrollHdl));
}
-
OBrowserListBox::~OBrowserListBox()
{
disposeOnce();