Skip to content

Commit

Permalink
Merge branch 'develop' of https://github.com/vtsai881/sleap into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
vtsai881 committed Dec 11, 2023
2 parents 1f8cb47 + 51f1d21 commit b358252
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions sleap/gui/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -505,6 +505,19 @@ def add_submenu_choices(menu, title, options, key):
"All Videos (only tracked frames)...",
lambda: self.commands.exportCSVFile(all_videos=True),
)

fileMenu.addSeparator()
add_menu_item(
export_csv_menu,
"export_csv_current_all_frames",
"Current Video (all frames)...",
lambda: self.commands.exportCSVFile(all_frames=True),
)
add_menu_item(
export_csv_menu,
"export_csv_all_frames",
"All Videos (all frames)...",
lambda: self.commands.exportCSVFile(all_frames=True, all_videos=True),

export_csv_menu.addSeparator()
add_menu_item(
Expand Down

0 comments on commit b358252

Please sign in to comment.