1. Fix EDKT433 help context triggered by mouse movement is not displayed properly

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@1963 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
hche10x
2006-11-16 06:23:10 +00:00
parent b026832ead
commit 888f61aa99

View File

@ -1503,14 +1503,11 @@ public class MsaHeader extends IInternalFrame implements DocumentListener {
jRadioButtonBinaryModuleTrue.setText("True"); jRadioButtonBinaryModuleTrue.setText("True");
jRadioButtonBinaryModuleTrue.setSelected(true); jRadioButtonBinaryModuleTrue.setSelected(true);
jRadioButtonBinaryModuleTrue.addFocusListener(this); jRadioButtonBinaryModuleTrue.addFocusListener(this);
jRadioButtonBinaryModuleTrue.setToolTipText("<html>Modules are either source modules <br>" jRadioButtonBinaryModuleTrue
+ "which can be compiled or binary <br>" .setToolTipText("<html>Modules are either source modules which can be compiled or binary <br>"
+ "modules which are linked. <br>" + "modules which are linked. A module cannot contain both. <br>"
+ "A module cannot contain both. <br>" + "The GUID numbers should be identical for a binary and source MSA, <br>"
+ "The GUID numbers should be identical <br>" + "however the BINARY MSA should have a higher version number.</html>");
+ "for a binary and source MSA, <br>"
+ "however the BINARY MSA should have <br>"
+ "a higher version number.</html>");
} }
return jRadioButtonBinaryModuleTrue; return jRadioButtonBinaryModuleTrue;
} }
@ -1526,7 +1523,8 @@ public class MsaHeader extends IInternalFrame implements DocumentListener {
jRadioButtonBinaryModuleFalse.setBounds(new java.awt.Rectangle(valueCol + 140, 480, 140, 20)); jRadioButtonBinaryModuleFalse.setBounds(new java.awt.Rectangle(valueCol + 140, 480, 140, 20));
jRadioButtonBinaryModuleFalse.setText("False"); jRadioButtonBinaryModuleFalse.setText("False");
jRadioButtonBinaryModuleFalse.addFocusListener(this); jRadioButtonBinaryModuleFalse.addFocusListener(this);
jRadioButtonBinaryModuleFalse.setToolTipText("<html>Modules are either source modules which can be compiled or binary <br>" jRadioButtonBinaryModuleFalse
.setToolTipText("<html>Modules are either source modules which can be compiled or binary <br>"
+ "modules which are linked. A module cannot contain both. <br>" + "modules which are linked. A module cannot contain both. <br>"
+ "The GUID numbers should be identical for a binary and source MSA, <br>" + "The GUID numbers should be identical for a binary and source MSA, <br>"
+ "however the BINARY MSA should have a higher version number.</html>"); + "however the BINARY MSA should have a higher version number.</html>");