Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main'
Browse files Browse the repository at this point in the history
  • Loading branch information
cohaereo committed Jun 5, 2024
2 parents b1a6674 + b53b702 commit 33a62bf
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/gui/common.rs
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,11 @@ pub fn tag_context(ui: &mut egui::Ui, tag: TagHash, tag64: Option<TagHash64>) {
warn!("Alkahest IPC not implemented yet");
ui.close_menu();
}

if ui.selectable_label(false, "📤 Open tag data").clicked() {
open_tag_in_default_application(tag);
ui.close_menu();
}
}

pub fn open_tag_in_default_application(tag: TagHash) {
Expand Down

0 comments on commit 33a62bf

Please sign in to comment.