diff options
| author | tkellner <tkellner@3a0b52a2-8410-0410-bc02-ff6273a87459> | 2012-10-31 16:36:47 +0000 | 
|---|---|---|
| committer | tkellner <tkellner@3a0b52a2-8410-0410-bc02-ff6273a87459> | 2012-10-31 16:36:47 +0000 | 
| commit | a3e61373e008ddceb8428263b0b95984aed926e0 (patch) | |
| tree | 9ede0ad5e5942cd50106a5e521d2373e065c322f /trunk/pdf-over-gui/src/main/java | |
| parent | 9bc79071a5738f0ca1b40dbe153d96959527324d (diff) | |
| download | pdf-over-a3e61373e008ddceb8428263b0b95984aed926e0.tar.gz pdf-over-a3e61373e008ddceb8428263b0b95984aed926e0.tar.bz2 pdf-over-a3e61373e008ddceb8428263b0b95984aed926e0.zip | |
Move save/cancel buttons right
git-svn-id: https://svn.iaik.tugraz.at/svn/egiz/prj/current/12PDF-OVER-4.0@12724 3a0b52a2-8410-0410-bc02-ff6273a87459
Diffstat (limited to 'trunk/pdf-over-gui/src/main/java')
| -rw-r--r-- | trunk/pdf-over-gui/src/main/java/at/asit/pdfover/gui/composites/ConfigurationComposite.java | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/trunk/pdf-over-gui/src/main/java/at/asit/pdfover/gui/composites/ConfigurationComposite.java b/trunk/pdf-over-gui/src/main/java/at/asit/pdfover/gui/composites/ConfigurationComposite.java index a26f07ce..b746678d 100644 --- a/trunk/pdf-over-gui/src/main/java/at/asit/pdfover/gui/composites/ConfigurationComposite.java +++ b/trunk/pdf-over-gui/src/main/java/at/asit/pdfover/gui/composites/ConfigurationComposite.java @@ -213,7 +213,7 @@ public class ConfigurationComposite extends StateComposite {  		Button btnSpeichern = new Button(this, SWT.NONE);  		FormData fd_btnSpeichern = new FormData(); -		fd_btnSpeichern.left = new FormAttachment(0, 5); +		fd_btnSpeichern.right = new FormAttachment(100, -10);  		fd_btnSpeichern.bottom = new FormAttachment(100, -5);  		btnSpeichern.setLayoutData(fd_btnSpeichern);  		btnSpeichern.addSelectionListener(new SelectionAdapter() { @@ -233,7 +233,7 @@ public class ConfigurationComposite extends StateComposite {  		Button btnAbbrechen = new Button(this, SWT.NONE);  		FormData fd_btnAbrechen = new FormData(); -		fd_btnAbrechen.left = new FormAttachment(btnSpeichern, 10); +		fd_btnAbrechen.right = new FormAttachment(btnSpeichern, -10);  		fd_btnAbrechen.bottom = new FormAttachment(100, -5);  		btnAbbrechen.setLayoutData(fd_btnAbrechen);  		btnAbbrechen.setText(Messages.getString("common.Cancel")); //$NON-NLS-1$ | 
