Skip to content

Commit

Permalink
Update crates/viewer/re_context_menu/src/actions/copy_entity_path.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
abey79 authored Feb 25, 2025
1 parent 4808e55 commit 2f7bf74
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/viewer/re_context_menu/src/actions/copy_entity_path.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ impl ContextMenuAction for CopyEntityPathToClipboard {
}
}

fn label(&self, _ctx: &ContextMenuContext<'_>) -> String {
if _ctx.selection.len() == 1 {
fn label(&self, ctx: &ContextMenuContext<'_>) -> String {
if ctx.selection.len() == 1 {
"Copy entity path".to_owned()
} else {
"Copy entity paths".to_owned()
Expand Down

0 comments on commit 2f7bf74

Please sign in to comment.