[Libreoffice-commits] core.git: sfx2/source

Tomaž Vajngerl tomaz.vajngerl at collabora.co.uk
Sat Jul 18 01:22:12 PDT 2015


 sfx2/source/dialog/templdlg.cxx |    7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

New commits:
commit 9f75bad228ca1f410b7a450084b02ad13745110e
Author: Tomaž Vajngerl <tomaz.vajngerl at collabora.co.uk>
Date:   Sat Jul 18 17:18:25 2015 +0900

    tdf#91495 don't change tree entry height when preview is disabled
    
    Change-Id: Ic707f4407bb3aef5f2a7b9d13a0340c6d9afb3fe

diff --git a/sfx2/source/dialog/templdlg.cxx b/sfx2/source/dialog/templdlg.cxx
index ab25ccd..c0d53ad 100644
--- a/sfx2/source/dialog/templdlg.cxx
+++ b/sfx2/source/dialog/templdlg.cxx
@@ -326,8 +326,11 @@ SfxActionListBox::SfxActionListBox(SfxCommonTemplateDialog_Impl* pParent, WinBit
 
 void SfxActionListBox::Recalc()
 {
-    SetEntryHeight(32 * GetDPIScaleFactor());
-    RecalcViewData();
+    if (officecfg::Office::Common::StylesAndFormatting::Preview::get())
+    {
+        SetEntryHeight(32 * GetDPIScaleFactor());
+        RecalcViewData();
+    }
 }
 
 PopupMenu* SfxActionListBox::CreateContextMenu()


More information about the Libreoffice-commits mailing list