diff options
author | Tomaž Vajngerl <tomaz.vajngerl@collabora.co.uk> | 2019-04-03 22:11:41 +0900 |
---|---|---|
committer | Tomaž Vajngerl <quikee@gmail.com> | 2019-04-04 02:40:36 +0200 |
commit | 9956cf0692058414ef3efdb0e8058fbb0b39f6bc (patch) | |
tree | 018a473ba4425d3087d133756d660bbd70c49286 /include | |
parent | 413461e3cf3a4b32a17419f67f879a8975c43987 (diff) |
tdf#124155 fix slider to not go beyond rect bounds
We need to ask the NWF for the size of the thumb and not just use
the hard-coded value.
Change-Id: I98c6b5782c6a043fc358198ddf844d36d7aa90d6
Reviewed-on: https://gerrit.libreoffice.org/70201
Tested-by: Jenkins
Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/vcl/slider.hxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/vcl/slider.hxx b/include/vcl/slider.hxx index 6549b4c0ac54..36247d52381a 100644 --- a/include/vcl/slider.hxx +++ b/include/vcl/slider.hxx @@ -36,6 +36,7 @@ private: long mnThumbPixOffset; long mnThumbPixRange; long mnThumbPixPos; + long mnThumbSize; long mnChannelPixOffset; long mnChannelPixRange; long mnChannelPixTop; |