Fix lexical mismatch
This commit is contained in:
@@ -111,7 +111,7 @@ public class CopyIntoPanel {
|
|||||||
return hasErrorsState;
|
return hasErrorsState;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setLabelWight(int wight) {
|
public void setLabelWidth(int width) {
|
||||||
copyIntoLabel.setPreferredSize(new Dimension(wight, -1));
|
copyIntoLabel.setPreferredSize(new Dimension(width, -1));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+2
-2
@@ -67,12 +67,12 @@ public abstract class CreateJavaScriptLibraryDialogBase extends DialogWrapper im
|
|||||||
|
|
||||||
copyJsFilesPanel = new CopyIntoPanel(project, defaultPathToJsFile, "Copy &runtime files to:");
|
copyJsFilesPanel = new CopyIntoPanel(project, defaultPathToJsFile, "Copy &runtime files to:");
|
||||||
copyJsFilesPanel.addValidityListener(validityListener);
|
copyJsFilesPanel.addValidityListener(validityListener);
|
||||||
copyJsFilesPanel.setLabelWight(110);
|
copyJsFilesPanel.setLabelWidth(110);
|
||||||
copyJsFilesPlace.add(copyJsFilesPanel.getContentPane(), BorderLayout.CENTER);
|
copyJsFilesPlace.add(copyJsFilesPanel.getContentPane(), BorderLayout.CENTER);
|
||||||
|
|
||||||
copyLibraryFilePanel = new CopyIntoPanel(project, defaultPathToJar, "Copy &headers to:");
|
copyLibraryFilePanel = new CopyIntoPanel(project, defaultPathToJar, "Copy &headers to:");
|
||||||
copyLibraryFilePanel.addValidityListener(validityListener);
|
copyLibraryFilePanel.addValidityListener(validityListener);
|
||||||
copyLibraryFilePanel.setLabelWight(110);
|
copyLibraryFilePanel.setLabelWidth(110);
|
||||||
copyLibraryPlace.add(copyLibraryFilePanel.getContentPane(), BorderLayout.CENTER);
|
copyLibraryPlace.add(copyLibraryFilePanel.getContentPane(), BorderLayout.CENTER);
|
||||||
|
|
||||||
if (!showPathToJarPanel) {
|
if (!showPathToJarPanel) {
|
||||||
|
|||||||
Reference in New Issue
Block a user