[Libreoffice-commits] core.git: Branch 'libreoffice-6-3' - cui/source

Caolán McNamara (via logerrit) logerrit at kemper.freedesktop.org
Wed Nov 20 14:49:10 UTC 2019


 cui/source/tabpages/align.cxx |    2 ++
 1 file changed, 2 insertions(+)

New commits:
commit 65d1f709d06bbb51d23962dfe6c13ade04476592
Author:     Caolán McNamara <caolanm at redhat.com>
AuthorDate: Wed Nov 20 09:49:12 2019 +0000
Commit:     Xisco Faulí <xiscofauli at libreoffice.org>
CommitDate: Wed Nov 20 15:47:55 2019 +0100

    Resolves: tdf#128811 Alignment option "Distributed" not working in calc
    
    Change-Id: I605b62ef0dfa29db93e4d7df8285a05a12bda8e3
    Reviewed-on: https://gerrit.libreoffice.org/83272
    Tested-by: Jenkins
    Reviewed-by: Xisco Faulí <xiscofauli at libreoffice.org>

diff --git a/cui/source/tabpages/align.cxx b/cui/source/tabpages/align.cxx
index 42a271028cf9..b4f1a2b9ad73 100644
--- a/cui/source/tabpages/align.cxx
+++ b/cui/source/tabpages/align.cxx
@@ -201,6 +201,7 @@ bool AlignmentTabPage::FillItemSet( SfxItemSet* rSet )
                 eJustify = SvxCellHorJustify::Right;
                 break;
             case ALIGNDLG_HORALIGN_BLOCK:
+            case ALIGNDLG_HORALIGN_DISTRIBUTED:
                 eJustify = SvxCellHorJustify::Block;
                 break;
             case ALIGNDLG_HORALIGN_FILL:
@@ -235,6 +236,7 @@ bool AlignmentTabPage::FillItemSet( SfxItemSet* rSet )
                 eJustify = SvxCellVerJustify::Bottom;
                 break;
             case ALIGNDLG_VERALIGN_BLOCK:
+            case ALIGNDLG_VERALIGN_DISTRIBUTED:
                 eJustify = SvxCellVerJustify::Block;
                 break;
         }


More information about the Libreoffice-commits mailing list