Display decoded rlwinm info to hover tooltip

This commit is contained in:
LagoLunatic 2024-12-01 20:27:56 -05:00
parent 8150f9832c
commit 1f6b4ac8c4
1 changed files with 4 additions and 0 deletions

View File

@ -149,6 +149,10 @@ fn ins_hover_ui(
ui.colored_label(appearance.highlight_color, "Extern".to_string());
}
}
if let Some(demangled) = rlwinmdec::decode(&ins.formatted) {
ui.colored_label(appearance.highlight_color, &demangled);
}
});
}