no message

This commit is contained in:
2024-10-14 18:41:02 +03:00
parent 702529147d
commit 45447f34f8
54 changed files with 200 additions and 100 deletions

View File

@@ -1,4 +1,5 @@
package Common.Visual.Trees;
import Common.MainModule_;
import Common.Visual.Themes.ThemeElement;
import Common.Visual.UI_;
@@ -9,7 +10,7 @@ public class StyledTreeCellRenderer extends DefaultTreeCellRenderer implements T
}
@Override
public void applyTheme() {
setBackgroundNonSelectionColor(UI_.getTheme().trees_background);
setBackgroundSelectionColor(UI_.getTheme().selection_background);
setBackgroundNonSelectionColor(MainModule_.instance.getUI().getTheme().trees_background);
setBackgroundSelectionColor(MainModule_.instance.getUI().getTheme().selection_background);
}
}