Skip to content
This repository was archived by the owner on Feb 6, 2024. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 5 additions & 7 deletions remote/src/app/components/app-draw/app-draw.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -315,20 +315,18 @@ export class AppDraw {
];
}

// TODO: Unleash arrows
// <ion-fab-button
// color={this.action === DeckdeckgoDrawAction.ARROW ? 'primary' : 'light'}
// onClick={(e: UIEvent) => this.switchTool(e, DeckdeckgoDrawAction.ARROW)}>
// <ion-icon ios="arrow-forward" md="arrow-forward"></ion-icon>
// </ion-fab-button>,

private renderActions() {
return [
<ion-fab-button
color={this.action === DeckdeckgoDrawAction.CIRCLE ? 'primary' : 'light'}
onClick={(e: UIEvent) => this.switchTool(e, DeckdeckgoDrawAction.CIRCLE)}>
<ion-icon name="radio-button-off"></ion-icon>
</ion-fab-button>,
<ion-fab-button
color={this.action === DeckdeckgoDrawAction.ARROW ? 'primary' : 'light'}
onClick={(e: UIEvent) => this.switchTool(e, DeckdeckgoDrawAction.ARROW)}>
<ion-icon ios="arrow-forward" md="arrow-forward"></ion-icon>
</ion-fab-button>,
<ion-fab-button
color={this.action === DeckdeckgoDrawAction.PENCIL ? 'primary' : 'light'}
onClick={(e: UIEvent) => this.switchTool(e, DeckdeckgoDrawAction.PENCIL)}>
Expand Down