resizable dialog
This commit is contained in:
parent
0fc5ec8d5c
commit
af62e48103
1 changed files with 4 additions and 3 deletions
|
@ -535,6 +535,7 @@ public class ConfigurationWizard extends JDialog {
|
||||||
|
|
||||||
/* Show dialog */
|
/* Show dialog */
|
||||||
JDialog dialog = optionPane.createDialog(parent, title);
|
JDialog dialog = optionPane.createDialog(parent, title);
|
||||||
|
dialog.setResizable(true);
|
||||||
dialog.setVisible(true);
|
dialog.setVisible(true);
|
||||||
return (String) optionPane.getValue();
|
return (String) optionPane.getValue();
|
||||||
}
|
}
|
||||||
|
@ -935,7 +936,7 @@ public class ConfigurationWizard extends JDialog {
|
||||||
testOutput.addMessage("Could not find address of referenceVar", MessageList.ERROR);
|
testOutput.addMessage("Could not find address of referenceVar", MessageList.ERROR);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
int relRefAddress = (Integer) addresses.get("referenceVar");
|
int relRefAddress = addresses.get("referenceVar");
|
||||||
javaLibrary.setReferenceAddress(relRefAddress);
|
javaLibrary.setReferenceAddress(relRefAddress);
|
||||||
|
|
||||||
testOutput.addMessage("### Creating data and BSS memory sections");
|
testOutput.addMessage("### Creating data and BSS memory sections");
|
||||||
|
|
Loading…
Add table
Reference in a new issue