@@ -23,7 +23,7 @@ export class LayersComponent {
23
23
@Output ( ) addColorToPalette = new EventEmitter < RgbColor > ( ) ;
24
24
@Output ( ) deleteColorFromPalette = new EventEmitter ( ) ;
25
25
@Output ( ) modifyColorPaletteColor = new EventEmitter < ModifyColorOfBacklightingColorPalettePayload > ( ) ;
26
- @Output ( ) select = new EventEmitter < LayerOption > ( ) ;
26
+ @Output ( ) selectLayer = new EventEmitter < LayerOption > ( ) ;
27
27
@Output ( ) toggleColorFromPalette = new EventEmitter < number > ( ) ;
28
28
@Output ( ) addLayer = new EventEmitter < number > ( ) ;
29
29
@Output ( ) removeLayer = new EventEmitter < number > ( ) ;
@@ -34,12 +34,12 @@ export class LayersComponent {
34
34
faTrash = faTrash ;
35
35
newColorPaletteColor = '#000000' ;
36
36
37
- selectLayer ( option : LayerOption ) {
37
+ onSelectLayer ( option : LayerOption ) {
38
38
if ( this . current ?. id === option . id ) {
39
39
return ;
40
40
}
41
41
42
- this . select . emit ( option ) ;
42
+ this . selectLayer . emit ( option ) ;
43
43
}
44
44
45
45
trackLayer ( index : number , layer : LayerOption ) : string {
@@ -50,7 +50,7 @@ export class LayersComponent {
50
50
this . removeLayer . emit ( layerOption . id ) ;
51
51
}
52
52
53
- onSelectLayer ( layerOption : LayerOption ) : void {
53
+ onAddLayer ( layerOption : LayerOption ) : void {
54
54
this . addLayer . emit ( layerOption . id ) ;
55
55
}
56
56
0 commit comments