mirror of https://github.com/encounter/objdiff.git
Compare commits
5 Commits
5e389438c7
...
221c1a8cda
Author | SHA1 | Date |
---|---|---|
LagoLunatic | 221c1a8cda | |
LagoLunatic | 0b7afa9f1e | |
LagoLunatic | 5841d4db8a | |
LagoLunatic | 7a360d4a99 | |
LagoLunatic | 40c97a1bc3 |
|
@ -18,4 +18,4 @@ android.keystore
|
|||
*.frag
|
||||
*.vert
|
||||
*.metal
|
||||
.vscode/launch.json
|
||||
.vscode/
|
||||
|
|
|
@ -95,7 +95,7 @@ exec = "0.3"
|
|||
|
||||
# native:
|
||||
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
||||
tracing-subscriber = "0.3"
|
||||
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
||||
|
||||
# web:
|
||||
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
||||
|
|
|
@ -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.trim());
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
|
|
|
@ -19,7 +19,7 @@ pub fn rlwinm_decode_window(
|
|||
if let Some(demangled) = rlwinmdec::decode(&state.text) {
|
||||
ui.scope(|ui| {
|
||||
ui.style_mut().override_text_style = Some(TextStyle::Monospace);
|
||||
ui.colored_label(appearance.replace_color, &demangled);
|
||||
ui.colored_label(appearance.replace_color, demangled.trim());
|
||||
});
|
||||
if ui.button("Copy").clicked() {
|
||||
ui.output_mut(|output| output.copied_text = demangled);
|
||||
|
|
Loading…
Reference in New Issue