Bug 141082 - Letter missing in dialog box
Summary: Letter missing in dialog box
Status: RESOLVED DUPLICATE of bug 92784
Alias: None
Product: LibreOffice
Classification: Unclassified
Component: Base (show other bugs)
Version:
(earliest affected)
7.2.0.0.alpha0+
Hardware: All All
: medium normal
Assignee: Not Assigned
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2021-03-17 18:52 UTC by David H
Modified: 2022-11-07 13:16 UTC (History)
1 user (show)

See Also:
Crash report or crash signature:


Attachments
screenshot (8.45 KB, image/png)
2021-03-17 18:54 UTC, David H
Details

Note You need to log in before you can comment on or make changes to this bug.
Description David H 2021-03-17 18:52:10 UTC

    
Comment 1 David H 2021-03-17 18:54:51 UTC
Created attachment 170534 [details]
screenshot
Comment 2 Julien Nabet 2021-03-17 20:41:11 UTC
On pc Debian x86-64 with master sources updated today + gen rendering, I could reproduce this.
I don't reproduce this with gtk3 rendering.

To reproduce this:
- create a brand new odb file with by default embedded hsqldb
- call wizard to create a table
- on 1: select all fields and put them at right then Next
- on 2: Next
- see the primary fields part on 3:

Caolán: with this patch, the missing "P" of "Primary key fields" appears:
diff --git a/wizards/com/sun/star/wizards/table/PrimaryKeyHandler.java b/wizards/com/sun/star/wizards/table/PrimaryKeyHandler.java
index 289f76dd36d4..4bf7af94353a 100644
--- a/wizards/com/sun/star/wizards/table/PrimaryKeyHandler.java
+++ b/wizards/com/sun/star/wizards/table/PrimaryKeyHandler.java
@@ -213,7 +213,7 @@ public class PrimaryKeyHandler implements XFieldSelectionListener
                 {
                     UIConsts.INTEGERS[8], "HID:WIZARDS_HID_DLGTABLE_CK_PK_AUTOVALUE", sApplyAutoValue, 248, 117, IPRIMEKEYSTEP, Short.valueOf(curtabindex++), 66
                 });
-        curPrimaryKeySelection = new FieldSelection(CurUnoDialog, IPRIMEKEYSTEP.intValue(), 116, 142, 208, 47, slblAvailableFields, slblSelPrimaryFields, 41234, false);
+        curPrimaryKeySelection = new FieldSelection(CurUnoDialog, IPRIMEKEYSTEP.intValue(), 116, 142, 214, 47, slblAvailableFields, slblSelPrimaryFields, 41234, false);
         curPrimaryKeySelection.addFieldSelectionListener(this);
 
     }

but the 2 buttons at the right are too near of the right border.
Moreover, I'm quite sure it'll still fail with other languages since the length of the words can greatly differ between 2 languages.

Any idea so UI adapts automatically on gen rendering? (like it seems with gtk3)
Comment 3 Jorge Teixeira 2022-11-07 13:16:38 UTC

*** This bug has been marked as a duplicate of bug 92784 ***