This commit is contained in:
Piotr Pekala 2019-10-04 01:22:06 -07:00
commit 14581d0d5f
2 changed files with 6 additions and 1 deletions

View File

@ -34,6 +34,10 @@
Leave this project running in the background after closing
</mat-checkbox>
<mat-checkbox [ngModelOptions]="{standalone: true}" [(ngModel)]="project.show_interface_labels">
Show interface labels at start
</mat-checkbox>
<div mat-dialog-actions>
<button mat-button (click)="onNoClick()" color="accent">Cancel</button>
<button mat-button (click)="onYesClick()" tabindex="2" mat-raised-button color="primary">Apply</button>

View File

@ -54,7 +54,8 @@ export class ProjectService {
grid_size: project.grid_size,
name: project.name,
scene_width: project.scene_width,
scene_height: project.scene_height
scene_height: project.scene_height,
show_interface_labels: project.show_interface_labels
});
}