From 4b75145ec0625a482a6db370f483560c6a4609ae Mon Sep 17 00:00:00 2001 From: Ryan Fleury Date: Tue, 27 Aug 2024 13:08:32 -0700 Subject: [PATCH] only consider non-queried disassembly views in general-purpose find-code-locationp ath --- src/df/gfx/df_gfx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/df/gfx/df_gfx.c b/src/df/gfx/df_gfx.c index 76f5b929..3999125b 100644 --- a/src/df/gfx/df_gfx.c +++ b/src/df/gfx/df_gfx.c @@ -3175,7 +3175,7 @@ df_window_update_and_render(Arena *arena, DF_Window *ws, DF_CmdList *cmds) { if(df_view_is_project_filtered(view)) { continue; } DF_GfxViewKind view_kind = df_gfx_view_kind_from_string(view->spec->info.name); - if(view_kind == DF_GfxViewKind_Disassembly) + if(view_kind == DF_GfxViewKind_Disassembly && view->query_string_size == 0) { panel_w_disasm = panel; view_w_disasm = view;