diff options
author | Caolán McNamara <caolanm@redhat.com> | 2021-02-19 10:13:15 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2021-02-19 13:33:09 +0100 |
commit | b925043f64179c23c5f7cfbc20b7c46cebdd1a26 (patch) | |
tree | f5873f3c355be1ea218d9176d4912484f43de226 /svx | |
parent | de9d840743413470aa57333fbe540d6c8f7dffb1 (diff) |
rename get_vscroll_width to get_scroll_thickness
and add split customize_scrollbars to form a separate set_scroll_thickness
Change-Id: Ia4b1c85d6ae85b0fb7aeb852d3a91b36b63143db
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/111207
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/dialog/charmap.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/dialog/charmap.cxx b/svx/source/dialog/charmap.cxx index a96e404353d1..253b744e3a0d 100644 --- a/svx/source/dialog/charmap.cxx +++ b/svx/source/dialog/charmap.cxx @@ -85,7 +85,7 @@ void SvxShowCharSet::SetDrawingArea(weld::DrawingArea* pDrawingArea) nY = aSize.Height() / ROW_COUNT; // tdf#121232 set a size request that will result in a 0 m_nXGap by default - mxScrollArea->set_size_request(COLUMN_COUNT * nX + mxScrollArea->get_vscroll_width() + 2, + mxScrollArea->set_size_request(COLUMN_COUNT * nX + mxScrollArea->get_scroll_thickness() + 2, ROW_COUNT * nY); } |