mirror of https://github.com/acidanthera/audk.git
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:
parent
d96d701f98
commit
4033708d7a
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue