diff options
author | Caolán McNamara <caolanm@redhat.com> | 2017-08-29 14:59:38 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2017-08-29 15:00:59 +0100 |
commit | 507247697dc6c4a41fe17a29d522511f97040738 (patch) | |
tree | 29723783ebf6a6ed47dd35f1c71ab5e224f8067a | |
parent | 9806359e65a4d33fdcfd968914cecfe388217738 (diff) |
make custom properties tab page some reasonable starting width
Change-Id: I50f1a552a39b2fb70e6c0c340f27834381eaa92e
-rw-r--r-- | sfx2/source/dialog/dinfdlg.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sfx2/source/dialog/dinfdlg.cxx b/sfx2/source/dialog/dinfdlg.cxx index f1e1c7678386..36a7774511db 100644 --- a/sfx2/source/dialog/dinfdlg.cxx +++ b/sfx2/source/dialog/dinfdlg.cxx @@ -2077,6 +2077,8 @@ CustomPropertiesControl::CustomPropertiesControl(vcl::Window* pParent) , m_pVertScroll(nullptr) , m_nThumbPos(0) { + Size aRequest(LogicToPixel(Size(320, 141), MapUnit::MapAppFont)); + set_width_request(aRequest.Width()); } void CustomPropertiesControl::Init(VclBuilderContainer& rBuilder) |