Skip to content
This repository was archived by the owner on Feb 6, 2024. It is now read-only.

Commit 0f8b484

Browse files
feat(#625): unleash arrows in remote control
Signed-off-by: peterpeterparker <[email protected]>
1 parent 765f561 commit 0f8b484

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

remote/src/app/components/app-draw/app-draw.tsx

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff 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)}>

0 commit comments

Comments
 (0)