this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

change folder icon

+6 -1
+1 -1
src/main/java/app/pane/explorer/DirectoryItem.java
··· 21 21 22 22 DirectoryItem(Explorer explorer, String name, String targetPath) 23 23 { 24 - super(explorer, name, ThemedIcon.FOLDER_OPEN_24, false); 24 + super(explorer, name, ThemedIcon.FOLDER_FILLED.derive(36, 36), false); 25 25 this.targetPath = targetPath; 26 26 27 27 new DropTarget(this, DnDConstants.ACTION_MOVE, new DropTargetAdapter() {
+3
src/main/java/util/ui/ThemedIcon.java
··· 75 75 public static final FlatSVGIcon TERMINAL_24 = getIcon("terminal"); 76 76 public static final FlatSVGIcon TERMINAL_16 = TERMINAL_24.derive(16, 16); 77 77 78 + public static final FlatSVGIcon FOLDER = getIcon("folder"); 79 + public static final FlatSVGIcon FOLDER_FILLED = getIcon("folder_filled"); 80 + 78 81 public static final FlatSVGIcon FOLDER_OPEN_24 = getIcon("folder-open"); 79 82 public static final FlatSVGIcon FOLDER_OPEN_16 = FOLDER_OPEN_24.derive(16, 16); 80 83
+1
src/main/resources/icon/folder.svg
··· 1 + <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="#ffffff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-folder-icon lucide-folder"><path d="M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z"/></svg>
+1
src/main/resources/icon/folder_filled.svg
··· 1 + <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#ffffff" stroke="none"><path d="M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z"/></svg>