From: lhauch Date: Wed, 16 Aug 2006 19:58:28 +0000 (+0000) Subject: Turned off the AUTO_RESIZE on the table so that it would work on a small display... X-Git-Tag: edk2-stable201903~24574 X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=commitdiff_plain;h=4033708d7a5f6bc2b0d308239a3a43275ba25dc5 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 --- diff --git a/Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/platform/ui/FpdFrameworkModules.java b/Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/platform/ui/FpdFrameworkModules.java index ee0a1e645c..440e421288 100644 --- a/Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/platform/ui/FpdFrameworkModules.java +++ b/Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/platform/ui/FpdFrameworkModules.java @@ -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;