diff options
-rw-r--r-- | cui/source/tabpages/border.cxx | 10 | ||||
-rw-r--r-- | cui/uiconfig/ui/borderpage.ui | 2 |
2 files changed, 11 insertions, 1 deletions
diff --git a/cui/source/tabpages/border.cxx b/cui/source/tabpages/border.cxx index 3c7c47903ad5..067a26a3207b 100644 --- a/cui/source/tabpages/border.cxx +++ b/cui/source/tabpages/border.cxx @@ -137,6 +137,16 @@ SvxBorderTabPage::SvxBorderTabPage(vcl::Window* pParent, const SfxItemSet& rCore get(m_pMergeAdjacentBordersCB, "mergeadjacent"); get(m_pRemoveAdjcentCellBordersCB, "rmadjcellborders"); + //tdf#99963, we need height-for-width support here, but for now we can + //bodge it + Size aPrefSize(m_pRemoveAdjcentCellBordersCB->get_preferred_size()); + Size aSize(m_pRemoveAdjcentCellBordersCB->CalcMinimumSize(36*approximate_char_width())); + if (aPrefSize.Width() > aSize.Width()) + { + m_pRemoveAdjcentCellBordersCB->set_width_request(aSize.Width()); + m_pRemoveAdjcentCellBordersCB->set_height_request(aSize.Height()); + } + if ( GetDPIScaleFactor() > 1 ) { for (short i = 0; i < aBorderImgLst.GetImageCount(); i++) diff --git a/cui/uiconfig/ui/borderpage.ui b/cui/uiconfig/ui/borderpage.ui index d25dbedfd65b..20fe9418fd49 100644 --- a/cui/uiconfig/ui/borderpage.ui +++ b/cui/uiconfig/ui/borderpage.ui @@ -103,7 +103,7 @@ </packing> </child> <child> - <object class="GtkCheckButton" id="rmadjcellborders"> + <object class="GtkCheckButton" id="rmadjcellborders:wrap"> <property name="label" translatable="yes">Remove border from adjacent cells as well</property> <property name="visible">True</property> <property name="can_focus">True</property> |