[Libreoffice-commits] core.git: Branch 'libreoffice-6-2' - sc/source

Libreoffice Gerrit user logerrit at kemper.freedesktop.org
Thu Dec 20 21:14:02 UTC 2018


 sc/source/ui/pagedlg/scuitphfedit.cxx |    4 ++++
 1 file changed, 4 insertions(+)

New commits:
commit 2923760cb8da0d6106e12bcb3d0ab1cc970d41ce
Author:     Caolán McNamara <caolanm at redhat.com>
AuthorDate: Thu Dec 20 16:52:11 2018 +0000
Commit:     Caolán McNamara <caolanm at redhat.com>
CommitDate: Thu Dec 20 22:13:31 2018 +0100

    Resolves: tdf#114695 limit width of this combo
    
    Change-Id: I3bcb880d05b9b2b6a7faf7b3646b169f3b11a46b
    Reviewed-on: https://gerrit.libreoffice.org/65508
    Tested-by: Jenkins
    Reviewed-by: Caolán McNamara <caolanm at redhat.com>
    Tested-by: Caolán McNamara <caolanm at redhat.com>

diff --git a/sc/source/ui/pagedlg/scuitphfedit.cxx b/sc/source/ui/pagedlg/scuitphfedit.cxx
index 36cbaf11f1b5..a851b3086ffe 100644
--- a/sc/source/ui/pagedlg/scuitphfedit.cxx
+++ b/sc/source/ui/pagedlg/scuitphfedit.cxx
@@ -66,6 +66,10 @@ ScHFEditPage::ScHFEditPage( vcl::Window*             pParent,
     m_pWndRight->SetLocation(Right);
 
     get(m_pLbDefined,"comboLB_DEFINED");
+    // tdf#114695 override natural size with a small value
+    // we expect this to get stretched to some larger but
+    // limited size based on surrounding widgets
+    m_pLbDefined->set_width_request(m_pLbDefined->approximate_digit_width() * 20);
 
     get(m_pBtnText,"buttonBTN_TEXT");
     get(m_pBtnTable,"buttonBTN_TABLE");


More information about the Libreoffice-commits mailing list