diff options
| author | alyssaf16 <alyssa_feinberg@brown.edu> | 2024-07-24 15:23:46 -0400 |
|---|---|---|
| committer | alyssaf16 <alyssa_feinberg@brown.edu> | 2024-07-24 15:23:46 -0400 |
| commit | 54c5ef5774b001e8acd4feb2e44e010d050cc687 (patch) | |
| tree | e763c28edbb6fff2482d3e0641dab950d06cebcd /src/client/views/pdf | |
| parent | e82c95293bb2d9db32fc9901f57f1997b74597c1 (diff) | |
drag boxes
Diffstat (limited to 'src/client/views/pdf')
| -rw-r--r-- | src/client/views/pdf/AnchorMenu.tsx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/client/views/pdf/AnchorMenu.tsx b/src/client/views/pdf/AnchorMenu.tsx index 31941a299..9fefaa26d 100644 --- a/src/client/views/pdf/AnchorMenu.tsx +++ b/src/client/views/pdf/AnchorMenu.tsx @@ -72,6 +72,7 @@ export class AnchorMenu extends AntimodeMenu<AntimodeMenuProps> { public ShowTargetTrail: () => void = unimplementedFunction; public IsTargetToggler: () => boolean = returnFalse; public gptFlashcards: () => void = unimplementedFunction; + public makeLabels: () => void = unimplementedFunction; public marqueeWidth = 0; public marqueeHeight = 0; public get Active() { @@ -247,6 +248,7 @@ export class AnchorMenu extends AntimodeMenu<AntimodeMenuProps> { )} {/* Adds a create flashcards option to the anchor menu, which calls the gptFlashcard method. */} <IconButton tooltip="Create flashcards" onPointerDown={this.gptFlashcards} icon={<FontAwesomeIcon icon="id-card" size="lg" />} color={SettingsManager.userColor} /> + <IconButton tooltip="Create labels" onPointerDown={this.makeLabels} icon={<FontAwesomeIcon icon="id-card" size="lg" />} color={SettingsManager.userColor} /> {AnchorMenu.Instance.OnAudio === unimplementedFunction ? null : ( <IconButton tooltip="Click to Record Annotation" // |
