Turned off the AUTO_RESIZE on the table so that it would work on a small display. Large display now has unused space, still trying to find a cure for this.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@1299 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
lhauch 2006-08-16 19:58:28 +00:00
parent d96d701f98
commit 4033708d7a
1 changed files with 3 additions and 1 deletions

View File

@ -146,7 +146,7 @@ public class FpdFrameworkModules extends IInternalFrame {
private final int verPrefWidth = 70;
private final int pathPrefWidth = 320;
private final int pathPrefWidth = 600;
private final int pathMinWidth = 280;
@ -279,6 +279,7 @@ public class FpdFrameworkModules extends IInternalFrame {
column.setMinWidth(pathMinWidth);
jTableAllModules.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
jTableAllModules.setAutoResizeMode(JTable.AUTO_RESIZE_OFF);
}
return jTableAllModules;
@ -508,6 +509,7 @@ public class FpdFrameworkModules extends IInternalFrame {
column.setMinWidth(typeMinWidth);
jTableFpdModules.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
jTableFpdModules.setAutoResizeMode(JTable.AUTO_RESIZE_OFF);
}
return jTableFpdModules;