|
From: <doc...@us...> - 2007-06-21 23:10:42
|
Revision: 94
http://openpcl.svn.sourceforge.net/openpcl/?rev=94&view=rev
Author: documentsystems
Date: 2007-06-21 16:10:44 -0700 (Thu, 21 Jun 2007)
Log Message:
-----------
Howard Hoagland. Moved the Ok and Cancel buttons up about 10 pixels to take up the blank vertical space, and put 5 more pixels below the Ok and Cancel buttons and the bottom frame edge.
Modified Paths:
--------------
openpcl/src/com/openpcl/viewer/printing/PosPrintSetupDialog.java
Modified: openpcl/src/com/openpcl/viewer/printing/PosPrintSetupDialog.java
===================================================================
--- openpcl/src/com/openpcl/viewer/printing/PosPrintSetupDialog.java 2007-06-21 22:41:24 UTC (rev 93)
+++ openpcl/src/com/openpcl/viewer/printing/PosPrintSetupDialog.java 2007-06-21 23:10:44 UTC (rev 94)
@@ -230,7 +230,7 @@
// Lay out tab 1 items
double tloTab1GridSpec[][] = new double[][] {
{ mTloFill, mTloHgap, mTloFill}, // columns
- { mTloFill, mTloVgap, mTloPref, mTloVgap, mTloPref, mTloVgap, mTloPref, mTloVgap, mTloPref}}; // rows
+ { mTloFill, mTloVgap, mTloPref, 1, mTloPref, 1, mTloPref, 1, mTloPref}}; // rows
TableLayout tloTab1Layout = new TableLayout(tloTab1GridSpec);
mTab1.setLayout(tloTab1Layout);
mTab1.setBorder(BorderFactory.createEmptyBorder(5, 5, 5, 5));
@@ -290,7 +290,7 @@
// Add the Control Panel, JTabbedPane, and buttons panel to the contentPane
double tloContentPaneGridSpec[][] = new double[][] {
{ mTloHgap, mTloFill, mTloHgap }, // columns
- { mTloVgap, mTloPref, mTloFill, mTloVgap, mTloPref, mTloVgap }}; // rows
+ { mTloVgap, mTloPref, mTloFill, 1, mTloPref, mTloVgap, mTloVgap }}; // rows
TableLayout tloContentPaneLayout = new TableLayout(tloContentPaneGridSpec);
setLayout(tloContentPaneLayout);
mControlJPanel = makeControlPanel();
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|