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 87943 Details for
Bug 212803
The buttons section in the import log dialog takes too much space when resizing the dialog
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]
Patch file
tptp_patch_bugzilla212803_20080125.txt (text/plain), 3.34 KB, created by
Yasuhisa Gotoh
on 2008-01-26 05:24:41 EST
(
hide
)
Description:
Patch file
Filename:
MIME Type:
Creator:
Yasuhisa Gotoh
Created:
2008-01-26 05:24:41 EST
Size:
3.34 KB
patch
obsolete
>Index: src/org/eclipse/tptp/monitoring/logui/internal/wizards/ImportLogWizardPage.java >=================================================================== >RCS file: /cvsroot/tptp/monitoring/org.eclipse.tptp.monitoring.logui/src/org/eclipse/tptp/monitoring/logui/internal/wizards/ImportLogWizardPage.java,v >retrieving revision 1.44 >diff -u -r1.44 ImportLogWizardPage.java >--- src/org/eclipse/tptp/monitoring/logui/internal/wizards/ImportLogWizardPage.java 16 Jan 2008 06:38:24 -0000 1.44 >+++ src/org/eclipse/tptp/monitoring/logui/internal/wizards/ImportLogWizardPage.java 26 Jan 2008 10:22:28 -0000 >@@ -508,7 +508,7 @@ > > importBtn = new Button(parent, SWT.PUSH); > importBtn.setText(LogUIMessages._120); >- GridData btnData = GridUtil.createHorizontalFill(); >+ GridData btnData = new GridData(SWT.FILL, SWT.DEFAULT, false, false); > btnData.widthHint = len; > btnData.horizontalAlignment = GridData.CENTER; > btnData.verticalAlignment=GridData.VERTICAL_ALIGN_END; >@@ -516,7 +516,7 @@ > > exportBtn = new Button(parent, SWT.PUSH); > exportBtn.setText(LogUIMessages._121); >- btnData = GridUtil.createHorizontalFill(); >+ btnData = new GridData(SWT.FILL, SWT.DEFAULT, false, false); > btnData.widthHint = len; > btnData.horizontalAlignment = GridData.CENTER; > btnData.verticalAlignment=GridData.VERTICAL_ALIGN_END; >@@ -627,21 +627,21 @@ > > addBtn = new Button(parent, SWT.PUSH); > addBtn.setText(LogUIMessages._19); >- GridData btnData = GridUtil.createHorizontalFill(); >+ GridData btnData = new GridData(SWT.FILL, SWT.DEFAULT, false, false); > btnData.widthHint = len; > btnData.horizontalAlignment = GridData.CENTER; > addBtn.setLayoutData(btnData); > > editBtn = new Button(parent, SWT.PUSH); > editBtn.setText(LogUIMessages._20); >- btnData = GridUtil.createHorizontalFill(); >+ btnData = new GridData(SWT.FILL, SWT.DEFAULT, false, false); > btnData.widthHint = len; > btnData.horizontalAlignment = GridData.CENTER; > editBtn.setLayoutData(btnData); > > removeBtn = new Button(parent, SWT.PUSH); > removeBtn.setText(LogUIMessages._21); >- btnData = GridUtil.createHorizontalFill(); >+ btnData = new GridData(SWT.FILL, SWT.DEFAULT, false, false); > btnData.widthHint = len; > btnData.horizontalAlignment = GridData.CENTER; > removeBtn.setLayoutData(btnData); >@@ -675,21 +675,21 @@ > > newLogSetBtn = new Button(parent, SWT.PUSH); > newLogSetBtn.setText(LogUIMessages._26); >- GridData btnData = GridUtil.createHorizontalFill(); >+ GridData btnData = new GridData(SWT.FILL, SWT.DEFAULT, false, false); > btnData.widthHint = len; > btnData.horizontalAlignment = GridData.CENTER; > newLogSetBtn.setLayoutData(btnData); > > renameLogSetBtn = new Button(parent, SWT.PUSH); > renameLogSetBtn.setText(LogUIMessages._27); >- btnData = GridUtil.createHorizontalFill(); >+ btnData = new GridData(SWT.FILL, SWT.DEFAULT, false, false); > btnData.widthHint = len; > btnData.horizontalAlignment = GridData.CENTER; > renameLogSetBtn.setLayoutData(btnData); > > deleteLogSetBtn = new Button(parent, SWT.PUSH); > deleteLogSetBtn.setText(LogUIMessages._28); >- btnData = GridUtil.createHorizontalFill(); >+ btnData = new GridData(SWT.FILL, SWT.DEFAULT, false, false); > btnData.widthHint = len; > btnData.horizontalAlignment = GridData.CENTER; > deleteLogSetBtn.setLayoutData(btnData);
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 212803
:
85113
| 87943