From 44fb75228a216ba6552daa20bcc98da695846d19 Mon Sep 17 00:00:00 2001 From: Ryan Fleury Date: Tue, 6 Aug 2024 14:12:18 -0700 Subject: [PATCH] fix incorrect symbol name font in symbol lister tooltips --- src/df/gfx/df_views.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/df/gfx/df_views.c b/src/df/gfx/df_views.c index 8692bd6b..d31eda26 100644 --- a/src/df/gfx/df_views.c +++ b/src/df/gfx/df_views.c @@ -4102,7 +4102,7 @@ DF_VIEW_UI_FUNCTION_DEF(SymbolLister) } if(ui_hovering(sig)) UI_Tooltip { - df_code_label(1.f, 0, df_rgba_from_theme_color(DF_ThemeColor_CodeSymbol), name); + DF_Font(ws, DF_FontSlot_Code) df_code_label(1.f, 0, df_rgba_from_theme_color(DF_ThemeColor_CodeSymbol), name); DF_Font(ws, DF_FontSlot_Main) UI_FlagsAdd(UI_BoxFlag_DrawTextWeak) ui_labelf("Procedure #%I64u", item->idx); U64 binary_voff = df_voff_from_dbgi_key_symbol_name(&dbgi_key, name);