wizards/com/sun/star/wizards/ui/FieldSelection.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit d2c4108dcaf321d378ead479a181eda79a5200b5 Author: Noel Grandin <noelgran...@collabora.co.uk> AuthorDate: Tue Oct 22 16:40:37 2024 +0200 Commit: Noel Grandin <noel.gran...@collabora.co.uk> CommitDate: Wed Oct 23 07:47:34 2024 +0200 tdf#144702 Base Fields in Report Label Display Clipped This is probably not an ideal fix, I'm not sure where exactly the positioning is off, but this does the job for now. regression from commit 95ccc26ba71259be29fde8ba6b6f52ffbe5bd3c7 Author: Tomaž Vajngerl <tomaz.vajng...@collabora.co.uk> Date: Fri May 22 18:07:45 2015 +0900 Change-Id: I2f02e68418b7adf2cba8dfa4e4e51d4416a91389 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/175417 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.gran...@collabora.co.uk> diff --git a/wizards/com/sun/star/wizards/ui/FieldSelection.java b/wizards/com/sun/star/wizards/ui/FieldSelection.java index 97f19e4eb108..3483132d4cd0 100644 --- a/wizards/com/sun/star/wizards/ui/FieldSelection.java +++ b/wizards/com/sun/star/wizards/ui/FieldSelection.java @@ -169,7 +169,7 @@ public class FieldSelection Integer cmdShiftButtonPosX = Integer.valueOf((CompPosX + ListBoxWidth.intValue() + cmdButtonHoriDist)); Integer ListBoxPosY = Integer.valueOf(CompPosY + lblVertiDist + lblHeight); Integer ListBoxHeight = Integer.valueOf(CompHeight - 8 - 2); - Integer SelListBoxPosX = Integer.valueOf(cmdShiftButtonPosX.intValue() + cmdButtonWidth + cmdButtonHoriDist); + Integer SelListBoxPosX = Integer.valueOf(cmdShiftButtonPosX.intValue() + cmdButtonWidth + cmdButtonHoriDist + 2); IStep = Integer.valueOf(_iStep); if (bshowFourButtons)