MCPcopy Index your code
hub / github.com/encounter/objdiff / symbol_hover_ui

Function symbol_hover_ui

objdiff-gui/src/views/symbol_diff.rs:534–545  ·  view source on GitHub ↗
(
    ui: &mut Ui,
    ctx: SymbolDiffContext<'_>,
    symbol_idx: usize,
    appearance: &Appearance,
)

Source from the content-addressed store, hash-verified

532}
533
534pub fn symbol_hover_ui(
535 ui: &mut Ui,
536 ctx: SymbolDiffContext<'_>,
537 symbol_idx: usize,
538 appearance: &Appearance,
539) {
540 ui.scope(|ui| {
541 ui.style_mut().override_text_style = Some(egui::TextStyle::Monospace);
542 ui.style_mut().wrap_mode = Some(egui::TextWrapMode::Wrap);
543 hover_items_ui(ui, symbol_hover(ctx.obj, symbol_idx, 0, None), appearance);
544 });
545}
546
547#[must_use]
548fn symbol_ui(

Callers 2

symbol_uiFunction · 0.85
symbol_label_uiFunction · 0.85

Calls 2

hover_items_uiFunction · 0.85
symbol_hoverFunction · 0.85

Tested by

no test coverage detected