[#2485] Fix method name

This commit is contained in:
Ahanu Dewhirst 2024-07-17 21:24:01 +10:00
parent 3d77c2d8e9
commit 2f524016de
2 changed files with 7 additions and 7 deletions

View File

@ -148,7 +148,7 @@ public class ComponentTreeRenderer extends DefaultTreeCellRenderer {
CGOverrideIcon = GUIUtil.getUITheme().getCGOverrideIcon();
CDOverrideSubcomponentIcon = GUIUtil.getUITheme().getCDOverrideSubcomponentIcon();
CDOverrideIcon = GUIUtil.getUITheme().getCDOverrideIcon();
visibilityHiddenForegroundColor = GUIUtil.getUITheme().getvisibilityHiddenForegroundColor();
visibilityHiddenForegroundColor = GUIUtil.getUITheme().getVisibilityHiddenForegroundColor();
}
private void applyToolTipText(List<RocketComponent> components, RocketComponent c, JComponent comp) {

View File

@ -85,7 +85,7 @@ public class UITheme {
Color getComponentTreeBackgroundColor();
Color getComponentTreeForegroundColor();
Color getvisibilityHiddenForegroundColor();
Color getVisibilityHiddenForegroundColor();
Color getFinPointGridMajorLineColor();
Color getFinPointGridMinorLineColor();
@ -373,7 +373,7 @@ public class UITheme {
}
@Override
public Color getvisibilityHiddenForegroundColor() {
public Color getVisibilityHiddenForegroundColor() {
return UIManager.getColor("Tree.textForeground.hidden.light");
}
@ -769,7 +769,7 @@ public class UITheme {
}
@Override
public Color getvisibilityHiddenForegroundColor() {
public Color getVisibilityHiddenForegroundColor() {
return UIManager.getColor("Tree.textForeground.hidden.dark");
}
@ -1165,7 +1165,7 @@ public class UITheme {
}
@Override
public Color getvisibilityHiddenForegroundColor() {
public Color getVisibilityHiddenForegroundColor() {
return UIManager.getColor("Tree.textForeground.hidden.dark");
}
@ -1580,8 +1580,8 @@ public class UITheme {
}
@Override
public Color getvisibilityHiddenForegroundColor() {
return getCurrentTheme().getvisibilityHiddenForegroundColor();
public Color getVisibilityHiddenForegroundColor() {
return getCurrentTheme().getVisibilityHiddenForegroundColor();
}
@Override