GP-1 Updated link arrow character used
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 22 KiB After Width: | Height: | Size: 27 KiB |
|
@ -44,7 +44,7 @@ import ghidra.util.task.TaskMonitor;
|
||||||
public class DomainFileNode extends DataTreeNode {
|
public class DomainFileNode extends DataTreeNode {
|
||||||
|
|
||||||
private static final Icon UNKNOWN_FILE_ICON = new GIcon("icon.datatree.node.domain.file");
|
private static final Icon UNKNOWN_FILE_ICON = new GIcon("icon.datatree.node.domain.file");
|
||||||
private static final String RIGHT_ARROW = "\u2b95";
|
private static final String RIGHT_ARROW = Character.isDefined(0x2192) ? "\u2192" : "->";
|
||||||
|
|
||||||
private final DomainFile domainFile;
|
private final DomainFile domainFile;
|
||||||
|
|
||||||
|
|
|
@ -59,7 +59,7 @@ import resources.icons.TranslateIcon;
|
||||||
|
|
||||||
public class FrontEndPluginScreenShots extends GhidraScreenShotGenerator {
|
public class FrontEndPluginScreenShots extends GhidraScreenShotGenerator {
|
||||||
|
|
||||||
private static final String RIGHT_ARROW = "\u2b95";
|
private static final String RIGHT_ARROW = "\u2192";
|
||||||
private static final String OTHER_PROJECT = "Other_Project";
|
private static final String OTHER_PROJECT = "Other_Project";
|
||||||
private Icon icon =
|
private Icon icon =
|
||||||
(Icon) getInstanceField("CONVERT_ICON", ProjectChooseRepositoryWizardModel.class);
|
(Icon) getInstanceField("CONVERT_ICON", ProjectChooseRepositoryWizardModel.class);
|
||||||
|
|