diff options
author | Caolán McNamara <caolanm@redhat.com> | 2019-11-07 15:57:16 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2019-11-07 18:30:57 +0100 |
commit | c4ee738407d16effdd04ed9c8f908aa736e3b9a2 (patch) | |
tree | 8ab2811c848c492b04246f23dec913e32b715c3f | |
parent | f2eae41e9a85cd1df4190160b7453d3e12b8ccbd (diff) |
we want this size group to handle both dimensions
Change-Id: I22647328dbcc1d4eb6b3841ea9a8e64d022cf252
Reviewed-on: https://gerrit.libreoffice.org/82236
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
-rw-r--r-- | sfx2/source/dialog/tabdlg.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sfx2/source/dialog/tabdlg.cxx b/sfx2/source/dialog/tabdlg.cxx index 8fa63e500ab8..a85f4ea1368e 100644 --- a/sfx2/source/dialog/tabdlg.cxx +++ b/sfx2/source/dialog/tabdlg.cxx @@ -945,6 +945,7 @@ void SfxTabDialogController::setPreviewsToSamePlace() return; m_xSizeGroup = m_xBuilder->create_size_group(); + m_xSizeGroup->set_mode(VclSizeGroupMode::Both); for (auto& rGrid : aGrids) m_xSizeGroup->add_widget(rGrid.get()); } |