mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2024-11-22 12:11:55 +00:00
Fixed the Data Type Sync dialog to use the full type text
This commit is contained in:
parent
8b9000c313
commit
97c5ba1f58
@ -116,9 +116,9 @@ class DataTypeComparePanel extends JPanel {
|
||||
HTMLDataTypeRepresentation[] diffs = representation1.diff(representation2);
|
||||
|
||||
// Display the data types.
|
||||
String dt1Text = (dataType1 != null) ? diffs[0].getHTMLString() : "";
|
||||
String dt2Text =
|
||||
(dataType2 != null) ? diffs[1].getHTMLString() : (dataType1 != null) ? "<Removed>" : "";
|
||||
String dt1Text = (dataType1 != null) ? diffs[0].getFullHTMLString() : "";
|
||||
String dt2Text = (dataType2 != null) ? diffs[1].getFullHTMLString()
|
||||
: (dataType1 != null) ? "<Removed>" : "";
|
||||
dtLabel1.setText(dt1Text);
|
||||
dtLabel2.setText(dt2Text);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user