Download
Getting Started
Members
Projects
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
More
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
Toggle navigation
Bugzilla – Attachment 25027 Details for
Bug 104403
TVT3.1: tct304: bad sizing in Task Tag preference page
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
Log In
[x]
|
Terms of Use
|
Copyright Agent
Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read
this important communication.
[patch]
proposed patch from Amy Wu
104403.patch (text/plain), 1.52 KB, created by
Nitin Dahyabhai
on 2005-07-20 00:55:18 EDT
(
hide
)
Description:
proposed patch from Amy Wu
Filename:
MIME Type:
Creator:
Nitin Dahyabhai
Created:
2005-07-20 00:55:18 EDT
Size:
1.52 KB
patch
obsolete
>Index: MainTab.java >=================================================================== >RCS file: /home/webtools/wst/components/sse/plugins/org.eclipse.wst.sse.ui/src-tasktags/org/eclipse/wst/sse/ui/internal/preferences/ui/MainTab.java,v >retrieving revision 1.1 >diff -u -r1.1 MainTab.java >--- MainTab.java 3 Jun 2005 20:12:28 -0000 1.1 >+++ MainTab.java 20 Jul 2005 04:53:12 -0000 >@@ -41,6 +41,7 @@ > import org.eclipse.swt.events.SelectionAdapter; > import org.eclipse.swt.events.SelectionEvent; > import org.eclipse.swt.graphics.Image; >+import org.eclipse.swt.graphics.Point; > import org.eclipse.swt.layout.GridData; > import org.eclipse.swt.layout.GridLayout; > import org.eclipse.swt.widgets.Button; >@@ -205,7 +206,11 @@ > Text description = new Text(composite, SWT.READ_ONLY | SWT.WRAP); > description.setText(SSEUIMessages.TaskTagPreferenceTab_33); //$NON-NLS-1$ > description.setBackground(composite.getBackground()); >- description.setLayoutData(new GridData(GridData.HORIZONTAL_ALIGN_FILL, GridData.VERTICAL_ALIGN_FILL, false, false, 2, 1)); >+ GridData gd = new GridData(GridData.HORIZONTAL_ALIGN_FILL, GridData.VERTICAL_ALIGN_FILL, true, false, 2, 1); >+ // https://bugs.eclipse.org/bugs/show_bug.cgi?id=104403 >+ Point sizeHint = description.computeSize(SWT.DEFAULT, SWT.DEFAULT); >+ gd.widthHint = sizeHint.x; >+ description.setLayoutData(gd); > > valueTable = new TableViewer(composite, SWT.BORDER | SWT.SINGLE | SWT.FULL_SELECTION | SWT.H_SCROLL | SWT.V_SCROLL); > valueTable.getControl().setLayoutData(new GridData(GridData.FILL_BOTH));
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 104403
:
25007
|
25008
| 25027