Customise window decorations, add openfolder action to menu, fix toolbar colours

This commit is contained in:
Michael Pivato
2024-06-08 16:30:05 +09:30
parent 8808b00f4d
commit ecdd4f7080
11 changed files with 253 additions and 167 deletions

View File

@@ -40,7 +40,7 @@ interface FileNode {
<button mat-icon-button disabled></button>
{{ node.file.name }}
</mat-tree-node>
<mat-tree-node *matTreeNodeDef="let node; when: hasChild">
<mat-tree-node *matTreeNodeDef="let node; when: hasChild" matTreeNodeToggle>
<button
mat-icon-button
matTreeNodePadding
@@ -51,7 +51,7 @@ interface FileNode {
chevron_right }
</mat-icon>
</button>
{{ node.name }}
{{ node.file.name }}
</mat-tree-node>
</mat-tree>`,
styleUrl: './file-tree.component.scss',