Skip to content

Commit 4c3f5e9

Browse files
authored
Merge pull request #236 from LagoLunatic/symbol-ctx
Fix context menu not appearing when right clicking the function name in the function diff view
2 parents c8ff45f + e9ce02f commit 4c3f5e9

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

objdiff-gui/src/views/diff.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -619,9 +619,7 @@ fn symbol_label_ui(
619619
.font(appearance.code_font.clone())
620620
.color(appearance.highlight_color),
621621
)
622-
.selectable(false)
623-
// TODO .show_tooltip_when_elided(false)
624-
// https://github.com/emilk/egui/commit/071e090e2b2601e5ed4726a63a753188503dfaf2
622+
.show_tooltip_when_elided(false)
625623
.ui(ui)
626624
.on_hover_ui_at_pointer(|ui| symbol_hover_ui(ui, ctx, symbol_idx, appearance))
627625
.context_menu(|ui| {

0 commit comments

Comments
 (0)