Skip to content

Commit

Permalink
Additional fix
Browse files Browse the repository at this point in the history
  • Loading branch information
cyqsimon committed Mar 25, 2024
1 parent 4aeffec commit 0c5470f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/display/ui_state.rs
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ impl UIState {
let proc_info = proc_info
.cloned()
.unwrap_or_else(|| ProcessInfo::new("<UNKNOWN>", 0));
connection_data.process_name = proc_info.name.clone();
connection_data.process_name.clone_from(&proc_info.name);
processes.entry(proc_info).or_default()
};

Expand Down

0 comments on commit 0c5470f

Please sign in to comment.