Created attachment 260330 [details]
END layout Option
Created attachment 260331 [details]
CENTER Layout option
Created attachment 260332 [details]
Expected result by Default in the property View
New Gerrit change created: https://git.eclipse.org/r/71499 Gerrit change https://git.eclipse.org/r/71499 was merged to [master]. Commit: http://git.eclipse.org/c/papyrus/org.eclipse.papyrus.git/commit/?id=0ec28fa6dce52335f9154e8920ae4305def34ec0 Waiting documentation update to close the bug (add the new named style to the doc) New Gerrit change created: https://git.eclipse.org/r/71878 Gerrit change https://git.eclipse.org/r/71878 was merged to [master]. Commit: http://git.eclipse.org/c/papyrus/org.eclipse.papyrus.git/commit/?id=4f474b1e56c90a7ef10072552ac4ade51898cadc New Gerrit change created: https://git.eclipse.org/r/71976 Gerrit change https://git.eclipse.org/r/71976 was merged to [master]. Commit: http://git.eclipse.org/c/papyrus/org.eclipse.papyrus.git/commit/?id=a58fd4ea17e841daa8b2a9a8462b16e9244e2bd3 This bug can be marked as resolved fixed. |
Created attachment 260329 [details] FILL layout option When adding a table in the property view, And set the table layout to FILL , table does not resize based on the view size. Same for END, BEGINNING and CENTER, the result is quite cahotic GridData tableData = new GridData(SWT.FILL, SWT.FILL, true, true); natTableWidget.setLayoutData(tableData); If the FILL behavior is normal , it should be possible to resize the table based on the view width. And set the percentage of each column : For exemple if the first column is set to 25% means that the second is 75% width. (if only 2 columns) By default each column should fill the width with the same proportion (50 /50 for 2 columns for instance )