This repository was archived by the owner on Feb 6, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +5
-7
lines changed
remote/src/app/components/app-draw Expand file tree Collapse file tree 1 file changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -315,20 +315,18 @@ export class AppDraw {
315315 ] ;
316316 }
317317
318- // TODO: Unleash arrows
319- // <ion-fab-button
320- // color={this.action === DeckdeckgoDrawAction.ARROW ? 'primary' : 'light'}
321- // onClick={(e: UIEvent) => this.switchTool(e, DeckdeckgoDrawAction.ARROW)}>
322- // <ion-icon ios="arrow-forward" md="arrow-forward"></ion-icon>
323- // </ion-fab-button>,
324-
325318 private renderActions ( ) {
326319 return [
327320 < ion-fab-button
328321 color = { this . action === DeckdeckgoDrawAction . CIRCLE ? 'primary' : 'light' }
329322 onClick = { ( e : UIEvent ) => this . switchTool ( e , DeckdeckgoDrawAction . CIRCLE ) } >
330323 < ion-icon name = "radio-button-off" > </ ion-icon >
331324 </ ion-fab-button > ,
325+ < ion-fab-button
326+ color = { this . action === DeckdeckgoDrawAction . ARROW ? 'primary' : 'light' }
327+ onClick = { ( e : UIEvent ) => this . switchTool ( e , DeckdeckgoDrawAction . ARROW ) } >
328+ < ion-icon ios = "arrow-forward" md = "arrow-forward" > </ ion-icon >
329+ </ ion-fab-button > ,
332330 < ion-fab-button
333331 color = { this . action === DeckdeckgoDrawAction . PENCIL ? 'primary' : 'light' }
334332 onClick = { ( e : UIEvent ) => this . switchTool ( e , DeckdeckgoDrawAction . PENCIL ) } >
You can’t perform that action at this time.
0 commit comments