mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-04 10:19:23 +02:00
GP-1981 Review fixes
This commit is contained in:
parent
9679752523
commit
a92a27e9f1
90 changed files with 375 additions and 381 deletions
|
@ -321,7 +321,7 @@ class ArticulatedEdgeRouter<V extends VisualVertex, E extends VisualEdge<V>>
|
|||
|
||||
private Color getRoutingBoxColor(E edge) {
|
||||
if (isTrueEdge(edge)) {
|
||||
return new GColor("color.palette.magenta");
|
||||
return Palette.MAGENTA;
|
||||
}
|
||||
return Palette.ORANGE;
|
||||
}
|
||||
|
|
|
@ -23,7 +23,6 @@ import java.beans.PropertyChangeListener;
|
|||
import javax.swing.*;
|
||||
|
||||
import docking.GenericHeader;
|
||||
import generic.theme.GColor;
|
||||
import generic.theme.GThemeDefaults.Colors.Palette;
|
||||
import ghidra.graph.graphs.AbstractTestVertex;
|
||||
|
||||
|
@ -41,7 +40,7 @@ public class TextAreaTestVertex extends AbstractTestVertex {
|
|||
|
||||
textArea.setText(name);
|
||||
textArea.setPreferredSize(new Dimension(200, 50));
|
||||
textArea.setBackground(new GColor("color.palette.darkkhaki"));
|
||||
textArea.setBackground(Palette.getColor("darkkhaki"));
|
||||
textArea.setCaretColor(Palette.PINK);
|
||||
textArea.setBorder(BorderFactory.createRaisedBevelBorder());
|
||||
textArea.setLineWrap(true);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue